pnpm create vue@latest
All checks were successful
CI / cache-and-install (push) Successful in 50s

This commit is contained in:
严浩
2024-08-04 11:34:25 +08:00
parent ebb7c976ad
commit 90c970bd67
35 changed files with 4953 additions and 0 deletions

20
vite.config.ts Normal file
View File

@ -0,0 +1,20 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import vueDevTools from 'vite-plugin-vue-devtools'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
vueDevTools(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})