webapp
Some checks failed
Docker Build and Publish / publish (push) Failing after 1m33s

This commit is contained in:
Eugene Howe
2026-02-17 09:47:30 -05:00
parent af09672ee3
commit b0957bfa49
102 changed files with 4213 additions and 378 deletions

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

@@ -0,0 +1,34 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";
import { TanStackRouterVite } from "@tanstack/router-plugin/vite";
import image from "@rollup/plugin-image";
import path from "node:path";
// https://vite.dev/config/
export default defineConfig({
plugins: [
TanStackRouterVite({
autoCodeSplitting: true,
quoteStyle: "double",
target: "react",
}),
image(),
react(),
],
resolve: {
alias: {
"@/test": path.resolve(__dirname, "./test"),
"@": path.resolve(__dirname, "./src"),
},
},
build: {
manifest: true,
sourcemap: true,
rollupOptions: {
input: {
reactApp: "./src/main.tsx",
},
},
outDir: "../public",
},
});