xc-pad/vue.config.js

26 řádky
544 B
JavaScript
Surový Normální zobrazení Historie

2024-01-10 17:58:43 +08:00
/*
* @Author: Do not edit
* @Date: 2023-12-27 16:41:40
* @LastEditTime: 2024-01-09 10:20:47
* @LastEditors: DY
* @Description:
*/
2023-12-27 16:44:11 +08:00
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
2024-01-10 17:58:43 +08:00
transpileDependencies: true,
2024-01-29 18:38:19 +08:00
publicPath: './',
2024-01-10 17:58:43 +08:00
// 配置代理服务器
devServer: {
// proxy: {
// '/api': {
// target: 'http://192.168.0.33:48082',
// ws: true,
// changeOrigin: true,
// pathRewrite: {
// '^/portapi': ''
// }
// }
// }
}
2023-12-27 16:44:11 +08:00
})