2020-12-20 21:59:09 +08:00
|
|
|
|
|
|
|
|
|
|
// 官方配置文档:https://webpack.js.org/configuration/dev-server/
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
|
devServer: {
|
|
|
|
|
|
hot: true,
|
|
|
|
|
|
disableHostCheck: true,
|
|
|
|
|
|
port: 80,
|
|
|
|
|
|
host: 'local.zyplayer.com'
|
|
|
|
|
|
},
|
|
|
|
|
|
publicPath: './',
|
2021-07-17 12:19:10 +08:00
|
|
|
|
outputDir: '../../zyplayer-doc-manage/src/main/resources/dist',
|
|
|
|
|
|
productionSourceMap: false,
|
|
|
|
|
|
pages: {
|
|
|
|
|
|
index: {
|
|
|
|
|
|
entry: 'src/main.js',
|
|
|
|
|
|
template: 'public/index.html',
|
|
|
|
|
|
filename: process.env.NODE_ENV === 'production'?'doc-console.html':'index.html',
|
|
|
|
|
|
},
|
|
|
|
|
|
}
|
2020-12-20 21:59:09 +08:00
|
|
|
|
};
|