Vue Cli 3为不同类型的文件构建自定义目录

时间:2018-09-06 04:19:51

标签: vue.js npm webpack vue-cli-3

我是使用vue构建Web应用程序的新手。 默认情况下,使用npm run build,它将建立以下结构:

enter image description here

但是我希望构建如下:

enter image description here

然后,如何将vue.config.js写成我想要的输出?

1 个答案:

答案 0 :(得分:1)

使用this GitHub issue as an example,您应该可以通过向配置中添加类似的内容来实现这一目标...

// vue.config.js
module.exports = {
  chainWebpack: config => {
    config.module.rule('images').use('url-loader')
      .loader('file-loader') // replaces the url-loader
      .tap(options => Object.assign(options, {
        name: 'images/register/[name].[hash:8].[ext]'
      }))
    config.module.rule('svg').use('file-loader')
      .tap(options => Object.assign(options, {
        name: 'images/register/[name].[hash:8].[ext]'
      }))
  },
  css: {
    extract: {
      filename: 'css/register/[name].[hash:8].css',
      chunkFilename: 'css/register/[name].[hash:8].css'
    }
  },
  configureWebpack: {
    output: {
      filename: 'js/register/[name].[hash:8].js',
      chunkFilename: 'js/register/[name].[hash:8].js'
    }
  }
}

有关更多信息和示例,请参见https://cli.vuejs.org/config/#vue-config-js