This commit is contained in:
cxc
2022-11-14 16:31:47 +08:00
parent 8422f5312e
commit a11f5c03c8
52 changed files with 4027 additions and 425 deletions

View File

@ -1,7 +1,22 @@
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
configureWebpack: {
plugins: [
require('unplugin-element-plus/webpack')({
// options
}),
],
},
devServer: {
proxy: {
'/dev-api': {
target: 'http://localhost:8000',
changeOrigin: true
}
}
},
transpileDependencies: true,
lintOnSave: false,
// publicPath: './',
// assetsDir: "../app/",
// assetsDir: "../apps/com.awspaas.user.apps.cmp/screen",
})