Я пытаюсь исключить Html -файл "dev. html" из сборки продукта. Как мне настроить веб-пакет? Я знаю, что должен применять правила, но где? Это мой vue .config. js
module.exports = {
"transpileDependencies": [
"vuetify"
],
pages: {
index: {
// entry for the page
entry: 'src/main.ts',
// the source template
template: process.env.NODE_ENV === 'development' ?
'public/dev.html' :
'public/index.html',
// output as dist/index.html
filename: 'index.html',
// when using title option,
// template title tag needs to be <title><%= htmlWebpackPlugin.options.title %></title>
title: 'Index Page',
// chunks to include on this page, by default includes
// extracted common chunks and vendor chunks.
chunks: ['chunk-vendors', 'chunk-common', 'index']
},
},
configureWebpack: {
devtool: process.env.NODE_ENV === 'development' ? 'source-map' : 'none',
}
}