在 vuejs/webpack 中构建后生成不同的路径,webpack,vuejs2"/>

首页 > 解决方案 > 在 vuejs/webpack 中构建后生成不同的路径

问题描述

我是 Vuejs 的新手。我正在一个项目中工作,我必须在 Vue 组件中显示图像。在我的组件中,我正在显示这样的图像:

<img src="./../../images/back-arrow.png">

然后构建后不显示。当我检查我的代码时,它显示不同的地址,如下所示:

<img src="/js/back-arrow.png?c4a414352d997e4618088074e1da917a">

我的文件夹结构是:

我不知道为什么它会改变,有人可以帮助我吗?TIA

我的 webpack 配置:

var path = require('path')
var webpack = require('webpack')

module.exports = {
  entry: './admin/assets/main.js',
  output: {
    path: path.resolve(__dirname, 'admin/js'),
    publicPath: '/js/',
    filename: 'graphs-lite-admin.js'
  },
  module: {
    rules: [
      {
        test: /\.css$/,
        use: [
          'vue-style-loader',
          'css-loader'
        ],
      },
      {
        test: /\.scss$/,
        use: [
          'vue-style-loader',
          'css-loader',
          'sass-loader'
        ],
      },
      {
        test: /\.sass$/,
        use: [
          'vue-style-loader',
          'css-loader',
          'sass-loader?indentedSyntax'
        ],
      },
      {
        test: /\.vue$/,
        loader: 'vue-loader',
        options: {
          loaders: {
            // Since sass-loader (weirdly) has SCSS as its default parse mode, we map
            // the "scss" and "sass" values for the lang attribute to the right configs here.
            // other preprocessors should work out of the box, no loader config like this necessary.
            'scss': [
              'vue-style-loader',
              'css-loader',
              'sass-loader'
            ],
            'sass': [
              'vue-style-loader',
              'css-loader',
              'sass-loader?indentedSyntax'
            ]
          }
          // other vue-loader options go here
        }
      },
      {
        test: /\.js$/,
        loader: 'babel-loader',
        exclude: /node_modules/
      },
      {
        test: /\.(png|jpg|gif|svg)$/,
        exclude: /node_modules/,
        loader: 'file-loader',
        options: {
          name: '[name].[ext]',
          outputPath: 'images/'
        }
      }
    ]
  },
  resolve: {
    alias: {
      'vue$': 'vue/dist/vue.esm.js'
    },
    extensions: ['*', '.js', '.vue', '.json']
  },
  devServer: {
    historyApiFallback: true,
    noInfo: true,
    overlay: true
  },
  performance: {
    hints: false
  },
  devtool: '#eval-source-map'
}

if (process.env.NODE_ENV === 'production') {
  module.exports.devtool = '#source-map'
  // http://vue-loader.vuejs.org/en/workflow/production.html
  module.exports.plugins = (module.exports.plugins || []).concat([
    new webpack.DefinePlugin({
      'process.env': {
        NODE_ENV: '"production"'
      }
    }),
    // new webpack.optimize.UglifyJsPlugin({
    //   sourceMap: true,
    //   compress: {
    //     warnings: false
    //   }
    // }),
    new webpack.LoaderOptionsPlugin({
      minimize: true
    })
  ])
}

标签: webpackvuejs2

解决方案


如果您使用 vue-cli 3.0 创建了项目,则可以使用 filenameHashing 选项将其删除。

在您的项目根目录上创建vue.config.js文件,然后编写此文件。

module.exports = {
  filenameHashing: false
}

请参阅此链接:https ://cli.vuejs.org/config/#filenamehashing

或者,如果您使用的是 webpack 配置文件,请[hash]从输出中删除。

output: {
  filename: '[name].[hash].bundle.js'
}

https://webpack.js.org/configuration/output/#output-filename


推荐阅读