mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-01-19 04:19:30 +08:00
99 lines
2.7 KiB
TypeScript
99 lines
2.7 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 { resolve } from 'path';
|
|
import postcssPresetEnv from 'postcss-preset-env';
|
|
|
|
const FSHOST = 'http://127.0.0.1:3000/';
|
|
|
|
const custom = [
|
|
'container', 'image', 'sprite', 'shader', 'text', 'comment', 'custom',
|
|
'layer', 'layer-group', 'animate', 'damage', 'graphics', 'icon'
|
|
]
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue({
|
|
customElement: custom
|
|
}),
|
|
vuejsx({
|
|
isCustomElement: (tag) => {
|
|
return custom.includes(tag) || tag.startsWith('g-');
|
|
}
|
|
}),
|
|
legacy({
|
|
targets: ['defaults', 'not IE 11'],
|
|
polyfills: true,
|
|
modernPolyfills: true
|
|
}),
|
|
components({ resolvers: [AntDesignVueResolver()] })
|
|
],
|
|
base: `./`,
|
|
resolve: {
|
|
alias: {
|
|
'@': resolve(__dirname, './src'),
|
|
'@ui': resolve(__dirname, './src/ui')
|
|
}
|
|
},
|
|
build: {
|
|
rollupOptions: {
|
|
output: {
|
|
manualChunks: {
|
|
antdv: ['ant-design-vue', '@ant-design/icons-vue'],
|
|
common: [
|
|
'lodash-es',
|
|
'axios',
|
|
'lz-string',
|
|
'chart.js',
|
|
'mutate-animate',
|
|
'@vueuse/core'
|
|
]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
css: {
|
|
preprocessorOptions: {
|
|
less: {
|
|
javascriptEnabled: true
|
|
}
|
|
},
|
|
postcss: {
|
|
plugins: [postcssPresetEnv()]
|
|
}
|
|
},
|
|
server: {
|
|
proxy: {
|
|
'/readFile': FSHOST,
|
|
'/writeFile': FSHOST,
|
|
'/writeMultiFiles': FSHOST,
|
|
'/listFile': FSHOST,
|
|
'/makeDir': FSHOST,
|
|
'/moveFile': FSHOST,
|
|
'/deleteFile': FSHOST,
|
|
'^/all/.*': {
|
|
target: FSHOST,
|
|
changeOrigin: true,
|
|
rewrite(path) {
|
|
return path.replace(/^\/all/, '');
|
|
},
|
|
},
|
|
'^/forceTem/.*': {
|
|
target: FSHOST,
|
|
changeOrigin: true,
|
|
rewrite(path) {
|
|
return path.replace(/^\/forceTem/, '');
|
|
},
|
|
},
|
|
'/danmaku': 'https://h5mota.com/backend/tower/barrage.php'
|
|
},
|
|
watch: {
|
|
ignored: ['**/public/**']
|
|
},
|
|
}
|
|
});
|