为什么都没了

This commit is contained in:
路 范
2021-09-24 12:59:34 +08:00
parent a975b3bdee
commit a66921f0f4
962 changed files with 252792 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin')
module.exports = {
devServer: {
open: true,
port: 6588,
proxy: {
'/api': {
target: process.env.VUE_APP_BASE_URL,
pathRewrite: {
'^/api': ''
}
}
}
},
lintOnSave: false,
css: {
loaderOptions: {
less: {
javascriptEnabled: true
}
}
},
configureWebpack: {
plugins: [
new MonacoWebpackPlugin()
]
},
productionSourceMap: false
}