初始化底座

This commit is contained in:
aixianling
2024-05-22 17:03:33 +08:00
parent aba9c3a8fe
commit 27ea4bc032
14 changed files with 342 additions and 62 deletions

23
vite.config.js Normal file
View File

@@ -0,0 +1,23 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import legacy from '@vitejs/plugin-legacy'
import vue2 from '@vitejs/plugin-vue2'
import vue2Jsx from '@vitejs/plugin-vue2-jsx'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue2(),
vue2Jsx(),
legacy({
targets: ['ie >= 11'],
additionalLegacyPolyfills: ['regenerator-runtime/runtime']
})
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})