我是使用 vue 构建网络应用程序的新手。默认情况下,使用npm run build
,它将构建以下结构:
但我希望构建如下:
那么,我怎样才能vue.config.js
像我想要的那样编写 as 输出?
以这个 GitHub 问题为例,你应该能够通过在你的配置中添加类似这样的东西来实现这一点......
// 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。