add alisurvey main page

This commit is contained in:
hsueh chiahao
2025-09-25 16:20:49 +08:00
parent 7fc028e186
commit 4ee023d68f
29 changed files with 7428 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/** WARNING: DON'T EDIT THIS FILE */
/** WARNING: DON'T EDIT THIS FILE */
/** WARNING: DON'T EDIT THIS FILE */
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tsconfigPaths from "vite-tsconfig-paths";
function getPlugins() {
const plugins = [react(), tsconfigPaths()];
return plugins;
}
export default defineConfig({
plugins: getPlugins()
});