add:通讯录i18n行数对齐

This commit is contained in:
hrz
2026-05-28 15:02:20 +08:00
parent 1e17e5ac8a
commit 38958b2d06
6 changed files with 285 additions and 11 deletions
+3 -3
View File
@@ -11,7 +11,7 @@ const { InjectManifest } = require('workbox-webpack-plugin');
// 引入 path 模块
const path = require('path')
function resolve(dir) {
return path.join(__dirname, dir)
}
@@ -39,12 +39,12 @@ const cdnResources = {
const useCDN = process.env.VUE_APP_USE_CDN === 'true';
module.exports = defineConfig({
productionSourceMap: process.env.NODE_ENV !=='production', // 生产环境不生成 source map
productionSourceMap: process.env.NODE_ENV !== 'production', // 生产环境不生成 source map
devServer: {
port: 8001, // 指定端口为 8001
proxy: {
'/xiaozhi': {
target: 'http://127.0.0.1:8002',
target: 'http://test.aiot.xin-nan.com',
changeOrigin: true
}
},