bug fixed

This commit is contained in:
cxc
2022-11-29 14:18:34 +08:00
parent 258820d624
commit 7cbdcb9916
39 changed files with 449 additions and 176 deletions

View File

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