feat: 添加sass样式

This commit is contained in:
2026-06-01 11:11:54 +08:00
parent 9b5879c658
commit 0ba412b194
10 changed files with 252 additions and 18 deletions

View File

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