2023-03-29 14:04:51 +08:00
|
|
|
import vue from '@vitejs/plugin-vue';
|
|
|
|
import { resolve } from 'path';
|
|
|
|
import { defineConfig, loadEnv } from 'vite';
|
|
|
|
import vueSetupExtend from 'vite-plugin-vue-setup-extend-plus';
|
|
|
|
import viteCompression from 'vite-plugin-compression';
|
|
|
|
import { buildConfig } from './src/utils/build';
|
|
|
|
|
|
|
|
const pathResolve = (dir) => {
|
|
|
|
return resolve(__dirname, '.', dir);
|
|
|
|
};
|
|
|
|
|
|
|
|
const alias = {
|
|
|
|
'/@': pathResolve('./src/'),
|
|
|
|
};
|
|
|
|
|
|
|
|
const viteConfig = defineConfig((mode) => {
|
|
|
|
const env = loadEnv(mode.mode, process.cwd());
|
|
|
|
return {
|
|
|
|
plugins: [vue(), vueSetupExtend(), viteCompression(), JSON.parse(env.VITE_OPEN_CDN) ? buildConfig.cdn() : null],
|
|
|
|
root: process.cwd(),
|
|
|
|
resolve: { alias },
|
|
|
|
base: mode.command === 'serve' ? './' : env.VITE_PUBLIC_PATH,
|
|
|
|
optimizeDeps: {
|
|
|
|
exclude: ['vue-demi'],
|
|
|
|
},
|
|
|
|
server: {
|
|
|
|
host: '0.0.0.0',
|
|
|
|
port: env.VITE_PORT,
|
|
|
|
open: JSON.parse(env.VITE_OPEN),
|
|
|
|
hmr: true,
|
|
|
|
proxy: {
|
|
|
|
'/api': {
|
2024-05-27 10:24:36 +08:00
|
|
|
target: 'http://192.168.31.175:6200',
|
2023-03-29 14:04:51 +08:00
|
|
|
ws: true,
|
|
|
|
changeOrigin: true,
|
|
|
|
rewrite: (path) => path.replace(/^\/api/, ''),
|
|
|
|
},
|
2024-01-19 10:01:38 +08:00
|
|
|
'/vordmdoc': {
|
2024-05-27 10:24:36 +08:00
|
|
|
target: 'http://192.168.31.175:6200',
|
2024-01-19 10:01:38 +08:00
|
|
|
ws: false,
|
|
|
|
changeOrigin: true,
|
|
|
|
rewrite: (path) => path.replace(/^\/vordmdoc/, ''),
|
|
|
|
},
|
2024-05-27 10:24:36 +08:00
|
|
|
'/vordm_pic': {
|
|
|
|
target: 'http://192.168.31.175:9000',
|
|
|
|
ws: true,
|
|
|
|
changeOrigin: true,
|
|
|
|
rewrite: (path) => path.replace(/^\/vordm_pic/, ''),
|
|
|
|
},
|
2023-03-29 14:04:51 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
build: {
|
|
|
|
outDir: 'dist',
|
|
|
|
chunkSizeWarningLimit: 1500,
|
|
|
|
rollupOptions: {
|
|
|
|
output: {
|
|
|
|
chunkFileNames: 'assets/js/[name]-[hash].js',
|
|
|
|
entryFileNames: 'assets/js/[name]-[hash].js',
|
|
|
|
assetFileNames: 'assets/[ext]/[name]-[hash].[ext]',
|
|
|
|
manualChunks(id) {
|
|
|
|
if (id.includes('node_modules')) {
|
|
|
|
return id.toString().split('node_modules/')[1].split('/')[0].toString();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
external: JSON.parse(env.VITE_OPEN_CDN) ? buildConfig.external : [],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
css: { preprocessorOptions: { css: { charset: false } } },
|
|
|
|
define: {
|
|
|
|
__NEXT_VERSION__: JSON.stringify(process.env.npm_package_version),
|
|
|
|
__NEXT_NAME__: JSON.stringify(process.env.npm_package_name),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
export default viteConfig;
|