revise css

This commit is contained in:
Kisechan
2025-03-02 22:42:09 +08:00
parent a71376fe05
commit 42cbc98394
6 changed files with 111 additions and 70 deletions

View File

@ -1,7 +1,12 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'path' // 引入 path 模块
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
})
resolve: {
alias: {
'@': path.resolve(__dirname, './src') // 配置 @ 别名
}
}
})