This commit is contained in:
Andras Bacsai
2025-03-10 15:11:25 +01:00
parent 6727b18539
commit 106937cc0f
17 changed files with 13628 additions and 0 deletions

24
remix/vite.config.ts Normal file
View File

@@ -0,0 +1,24 @@
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;
}
}
export default defineConfig({
plugins: [
remix({
future: {
v3_fetcherPersist: true,
v3_relativeSplatPath: true,
v3_throwAbortReason: true,
v3_singleFetch: true,
v3_lazyRouteDiscovery: true,
},
}),
tsconfigPaths(),
],
});