123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import {
- defineConfig,
- loadEnv
- } from 'vite'
- import path from 'path'
- import createVitePlugins from './vite/plugins'
- export default defineConfig(({
- mode,
- command
- }) => {
- const env = loadEnv(mode, process.cwd())
- const {
- VITE_APP_ENV
- } = env
- return {
-
-
-
- base: VITE_APP_ENV === 'production' ? '/' : '/',
- plugins: createVitePlugins(env, command === 'build'),
- resolve: {
-
- alias: {
-
- '~': path.resolve(__dirname, './'),
-
- '@': path.resolve(__dirname, './src')
- },
-
- extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue']
- },
-
- server: {
- port: 80,
- host: true,
- open: true,
- proxy: {
-
- '/dev-api': {
- target: 'http://121.37.194.75:10000/test-api',
-
-
- changeOrigin: true,
- rewrite: (p) => p.replace(/^\/dev-api/, '')
- }
- }
- },
-
- css: {
- postcss: {
- plugins: [{
- postcssPlugin: 'internal:charset-removal',
- AtRule: {
- charset: (atRule) => {
- if (atRule.name === 'charset') {
- atRule.remove();
- }
- }
- }
- }]
- }
- }
- }
- })
|