修改保险后端代码,政府前端代码

This commit is contained in:
2025-09-22 17:56:30 +08:00
parent 3143c3ad0b
commit 02a25515a9
206 changed files with 35119 additions and 43073 deletions

View File

@@ -1,57 +1,22 @@
import { defineConfig, loadEnv } from 'vite'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
import { webcrypto } from 'crypto'
globalThis.crypto = webcrypto
// https://vitejs.dev/config/
export default defineConfig(({ mode }) => {
// 加载环境变量
const env = loadEnv(mode, process.cwd(), '')
return {
plugins: [vue({
style: {
postcss: {}, // 仅使用PostCSS处理CSS
css: {
postcss: {},
modules: false
}
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': '/src',
'antd': 'ant-design-vue'
}
},
server: {
port: 3002,
proxy: {
'/api': {
target: 'http://localhost:5352', // 政府端后端服务地址
changeOrigin: true
}
})],
resolve: {
alias: {
'@': resolve(__dirname, 'src')
}
},
server: {
port: 5400,
host: '0.0.0.0',
strictPort: true,
proxy: {
'/api': {
target: 'http://localhost:5352',
changeOrigin: true,
secure: false,
rewrite: (path) => path.replace(/^\/api/, '/api')
}
}
},
build: {
outDir: 'dist',
assetsDir: 'assets',
rollupOptions: {
output: {
assetFileNames: 'assets/[name]-[hash][extname]',
chunkFileNames: 'assets/[name]-[hash].js',
entryFileNames: 'assets/[name]-[hash].js'
}
}
},
define: {
// 将环境变量注入到应用中
__APP_ENV__: JSON.stringify(env)
}
}
})