vite.config.ts 363 B

12345678910111213141516
  1. import { vitePlugin as remix } from "@remix-run/dev";
  2. import { defineConfig } from "vite";
  3. import tsconfigPaths from "vite-tsconfig-paths";
  4. export default defineConfig({
  5. plugins: [
  6. remix({
  7. future: {
  8. v3_fetcherPersist: true,
  9. v3_relativeSplatPath: true,
  10. v3_throwAbortReason: true,
  11. },
  12. }),
  13. tsconfigPaths(),
  14. ],
  15. });