|
@@ -2,9 +2,17 @@
|
|
|
|
|
|
let targetUrl = 'http://testadm.dayaedu.com/'
|
|
|
module.exports = {
|
|
|
+ publicPath: './',
|
|
|
|
|
|
|
|
|
- chainWebpack: () => {},
|
|
|
+ chainWebpack: config => {
|
|
|
+ config.plugin('html').tap(args => {
|
|
|
+ args[0].minify = {
|
|
|
+ removeAttributeQuotes: false
|
|
|
+ }
|
|
|
+ return args
|
|
|
+ })
|
|
|
+ },
|
|
|
configureWebpack: () => {},
|
|
|
|
|
|
devServer: {
|