vue-cli 2.0 中,assetsSubDirectory 可以在如下位置配置:
// config -> index.js
module.exports = {
build: {
// Template for index.html
index: path.resolve(__dirname, '../dist/index.html'),
// Paths
assetsRoot: path.resolve(__dirname, '../dist'),
assetsSubDirectory: 'pzcatering-web/wxdc',
assetsPublicPath: '/',
/**
* Source Maps
*/
productionSourceMap: false,
}
}
最终执行 npm run build 后,生成的 dist 目录为:
在 vue-cli3.0 中默认生成的是:
如何在 vue-cli3.0 的 vue.config.js 中配置才能生成图一的目录样子呢?