mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-08 12:57:46 +00:00
12 lines
363 B
TypeScript
12 lines
363 B
TypeScript
import { vitePlugin as remix } from "@remix-run/dev";
|
|
import { installGlobals } from "@remix-run/node";
|
|
import { defineConfig } from "vite";
|
|
import { vercelPreset } from '@vercel/remix/vite';
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
|
|
installGlobals();
|
|
|
|
export default defineConfig({
|
|
plugins: [remix({ presets: [vercelPreset()] }), tsconfigPaths()],
|
|
});
|