A new Era

This commit is contained in:
Space-Banane
2025-11-23 00:50:49 +01:00
parent 6d9f7560ba
commit 24f5958558
23 changed files with 2115 additions and 7211 deletions

View File

@@ -1,24 +1,8 @@
import { vitePlugin as remix } from "@remix-run/dev";
import { defineConfig } from "vite";
import tsconfigPaths from "vite-tsconfig-paths";
declare module "@remix-run/node" {
interface Future {
v3_singleFetch: true;
}
}
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
// https://vite.dev/config/
export default defineConfig({
plugins: [
remix({
future: {
v3_fetcherPersist: true,
v3_relativeSplatPath: true,
v3_throwAbortReason: true,
v3_singleFetch: true,
v3_lazyRouteDiscovery: true,
},
}),
tsconfigPaths(),
],
plugins: [react(), tailwindcss()],
});