23 lines
490 B
JavaScript
23 lines
490 B
JavaScript
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: "../apps/com.awspaas.user.apps.cmp/screen",
|
|
});
|