module.exports = {
/* 部署應用包的基本URL, 不設置可能會出現打包后項目找不到資源問題 */
publicPath: './',
configureWebpack: {
module: {
rules: [
{
test: /\.(html)$/,
exclude: /node_modules/,
use: {
loader: 'html-loader',
options: {
minimize: true
}
}
}
]
}
}
}
