This commit is contained in:
2025-09-03 15:06:16 +08:00
commit 39fff8c63c
96 changed files with 13215 additions and 0 deletions

21
vite.config.ts Normal file
View File

@@ -0,0 +1,21 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";
import path from "path";
import basicSsl from "@vitejs/plugin-basic-ssl";
export default defineConfig({
// plugins: [react()],
plugins: [react(), basicSsl()],
server: {
https: {},
port: 3000,
host: "0.0.0.0",
open: true,
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
"~": "/src",
},
},
});