我想在Vue Webpack中更改块文件的命名结构!默认情况下,我的webpack.prod.conf.js
中包含以下内容:
output: {
path: config.build.assetsRoot,
filename: utils.assetsPath('js/[name].[chunkhash].js'),
chunkFilename: utils.assetsPath('js/[name].[id].[chunkhash].js')
},
在routes/index.js
中:
{
path: '/something',
name: 'something',
component: () => import(/* webpackChunkName:"something" */ '@/components/Something'),
meta: {
'requiresAuth': true
}
},
如您所见,我在routes/index.js
中传递了块文件的名称。但是,我希望具有以下结构:
js/[access_level]/[name].[id].[chunkhash].js
以某种方式,我需要在webpack.prod.conf.js
中传递访问级别。请指导我!有可能这样做吗?