feat: add remix application

This commit is contained in:
Mauricio Siu
2024-06-30 19:26:43 -06:00
parent 02e2cfd645
commit ac24832ee7
15 changed files with 6989 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { vitePlugin as remix } from "@remix-run/dev";
import { defineConfig } from "vite";
import tsconfigPaths from "vite-tsconfig-paths";
export default defineConfig({
plugins: [
remix({
future: {
v3_fetcherPersist: true,
v3_relativeSplatPath: true,
v3_throwAbortReason: true,
},
}),
tsconfigPaths(),
],
});