博客前端

This commit is contained in:
2025-12-21 16:24:40 +08:00
commit 41720e2a9b
44 changed files with 14619 additions and 0 deletions

13
vite.config.js Normal file
View File

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