mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-01-18 20:09:27 +08:00
65 lines
1.8 KiB
TypeScript
65 lines
1.8 KiB
TypeScript
import { defineConfig } from 'vite';
|
|
import vue from '@vitejs/plugin-vue';
|
|
import legacy from '@vitejs/plugin-legacy';
|
|
import components from 'unplugin-vue-components/vite';
|
|
import vuejsx from '@vitejs/plugin-vue-jsx'
|
|
import { AntDesignVueResolver } from 'unplugin-vue-components/resolvers';
|
|
import motaConfig from './mota.config';
|
|
|
|
const FSHOST = 'http://127.0.0.1:3000/';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue(),
|
|
vuejsx(),
|
|
legacy({
|
|
targets: ['defaults', 'not IE 11'],
|
|
polyfills: true,
|
|
modernPolyfills: true
|
|
}),
|
|
components({ resolvers: [AntDesignVueResolver()] })
|
|
],
|
|
base: `/games/${motaConfig.name}/`,
|
|
build: {
|
|
rollupOptions: {
|
|
output: {
|
|
manualChunks: {
|
|
antdv: ['ant-design-vue', '@ant-design/icons-vue'],
|
|
common: ['lodash', 'axios', 'lz-string', 'chart.js', 'mutate-animate', 'three']
|
|
}
|
|
}
|
|
}
|
|
},
|
|
css: {
|
|
preprocessorOptions: {
|
|
less: {
|
|
javascriptEnabled: true
|
|
}
|
|
}
|
|
},
|
|
server: {
|
|
proxy: {
|
|
'/readFile': FSHOST,
|
|
'/writeFile': FSHOST,
|
|
'/writeMultiFiles': FSHOST,
|
|
'/listFile': FSHOST,
|
|
'/makeDir': FSHOST,
|
|
'/moveFile': FSHOST,
|
|
'/deleteFile': FSHOST,
|
|
'/reload': FSHOST,
|
|
'/hotReload': FSHOST,
|
|
'^/all/.*': {
|
|
target: FSHOST,
|
|
changeOrigin: true,
|
|
rewrite(path) {
|
|
return path.replace(/^\/all/, '');
|
|
},
|
|
}
|
|
},
|
|
watch: {
|
|
ignored: ['**/public/**']
|
|
},
|
|
}
|
|
});
|