feat: build account dashboard and settings workspace

This commit is contained in:
2026-03-26 23:03:45 +08:00
parent be4bc8a3af
commit 8ee9a696b4
18 changed files with 2468 additions and 54 deletions

View File

@@ -1,7 +1,13 @@
import { defineConfig } from "vite";
import solid from "vite-plugin-solid";
import tailwindcss from "@tailwindcss/vite";
import path from "path";
export default defineConfig({
plugins: [solid(), tailwindcss()],
resolve: {
alias: {
"~": path.resolve(__dirname, "src"),
},
},
});