initial commit

This commit is contained in:
Simeon Radivoev 2026-01-23 04:56:39 +02:00
commit 3e90445fab
Signed by: simeonradivoev
GPG key ID: 7611A451D2A5D37A
20 changed files with 961 additions and 0 deletions

26
vite.config.ts Normal file
View file

@ -0,0 +1,26 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from '@tailwindcss/vite'
import { tanstackRouter } from '@tanstack/router-plugin/vite'
export default defineConfig({
plugins: [
tailwindcss(),
tanstackRouter({
target: 'react',
routesDirectory: "./routes/",
generatedRouteTree: "./routeTree.gen.ts",
autoCodeSplitting: true,
}),
react(),
],
root: "src/mainview",
build: {
outDir: "../../dist",
emptyOutDir: true,
},
server: {
port: 5173,
strictPort: true,
},
});