12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- import { defineConfig } from 'vite'
- import vue from '@vitejs/plugin-vue'
- import topLevelAwait from 'vite-plugin-top-level-await'
- import { resolve } from 'path'
- import viteCompression from 'vite-plugin-compression';
- import { visualizer } from "rollup-plugin-visualizer";
- import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
- import VitePluginHtmlEnv from 'vite-plugin-html-env'
- const time = new Date().getTime()
- const apiProxyVersion = 'local'
- export default defineConfig({
- define: {
- 'process.env': process.env
- },
- plugins: [vue(), viteCompression(), VitePluginHtmlEnv(), visualizer(), createSvgIconsPlugin({
-
- iconDirs: [resolve(process.cwd(), 'src/assets/svg')],
-
- symbolId: 'icon-[dir]-[name]',
- }), topLevelAwait({
- promiseExportName: '__tla',
- promiseImportName: i => `__tla_${i}`
- })],
- base: '/',
- resolve: {
- alias: {
- '@': resolve(__dirname, 'src'),
- '~@': resolve(__dirname, 'src'),
- '@views': resolve(__dirname, 'src/views'),
- '@components': resolve(__dirname, 'src/components')
- },
- },
- server: {
- port: 8686,
-
- https: false,
- host: '0.0.0.0',
- strictPort: false,
- proxy: {
- '/api-ztpt/': {
- target: 'http://127.0.0.1:3001/',
-
- changeOrigin: true,
- rewrite: path => {
- return path.replace(/^\/api-ztpt/, '')
- }
- },
- '/api/': {
- target: 'http://8.140.240.182:18091/',
- changeOrigin: true,
- rewrite: path => {
- return path.replace(/^\/api/, '')
- }
- },
- }
- },
- build: {
- outDir: "duty",
- rollupOptions: {
- output: {
- manualChunks(id) {
- if (id.includes('node_modules')) {
- return time + id.toString().split('node_modules/')[1].split('/')[0].toString();
- } else {
- return time + id.toString();
- }
-
-
-
- }
- }
- }
- },
- publicDir: 'src/out',
- optimizeDeps: {
- include: []
- }
- })
|