You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.3 KiB
46 lines
1.3 KiB
import { defineConfig, loadEnv } from 'vite'; |
|
|
|
const { resolve } = require('path'); |
|
import createVitePlugins from './vite/plugins'; |
|
// https://vitejs.dev/config/ |
|
export default ({ mode, command }) => { |
|
const env = loadEnv(mode, process.cwd()); |
|
const { VITE_APP_BASE } = env; |
|
return defineConfig({ |
|
base: VITE_APP_BASE, |
|
server: { |
|
port: 2888, |
|
proxy: { |
|
'/api': { |
|
// target: 'http://192.168.10.126:8889', |
|
target: 'https://h5uapi.huitongys.com', |
|
changeOrigin: true, |
|
rewrite: path => path.replace(/^\/api/, ''), |
|
}, |
|
}, |
|
}, |
|
resolve: { |
|
alias: { |
|
'~': resolve(__dirname, './'), |
|
'@': resolve(__dirname, './src'), |
|
components: resolve(__dirname, './src/components'), |
|
styles: resolve(__dirname, './src/styles'), |
|
utils: resolve(__dirname, './src/utils'), |
|
}, |
|
}, |
|
plugins: createVitePlugins(env, command === 'build'), |
|
build: { |
|
chunkSizeWarningLimit: 1000, |
|
rollupOptions: { |
|
output: { |
|
// 分包 |
|
manualChunks(id) { |
|
if (id.includes('node_modules')) { |
|
return id.toString().split('node_modules/')[1].split('/')[0].toString(); |
|
} |
|
}, |
|
}, |
|
}, |
|
}, |
|
}); |
|
};
|
|
|