1
0

Initial project setup with Go backend, React frontend, and Neutralino desktop shell

This commit is contained in:
2026-04-14 23:25:15 +08:00
commit fca1e5b642
27 changed files with 862 additions and 0 deletions

19
frontend/vite.config.ts Normal file
View File

@@ -0,0 +1,19 @@
import path from "node:path";
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "src"),
},
},
css: {
preprocessorOptions: {
scss: {
api: "modern-compiler",
},
},
},
});