18 lines
278 B
JavaScript
18 lines
278 B
JavaScript
|
|
module.exports = {
|
||
|
|
publicPath: './',
|
||
|
|
outputDir: 'dist',
|
||
|
|
assetsDir: 'static',
|
||
|
|
lintOnSave: false,
|
||
|
|
productionSourceMap: false,
|
||
|
|
devServer: {
|
||
|
|
port: 8080,
|
||
|
|
open: true,
|
||
|
|
client: {
|
||
|
|
overlay: {
|
||
|
|
warnings: false,
|
||
|
|
errors: true
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|