diff --git a/vite.config.ts b/vite.config.ts index ed6b1ce..ec6068f 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -6,14 +6,15 @@ import tsconfigPaths from 'vite-tsconfig-paths' export default defineConfig({ build: { - sourcemap: true + sourcemap: true, + target: 'esnext', }, server: { - port: 3000 + port: 3000, }, plugins: [ remixDevTools(), remix({ presets: [vercelPreset()] }), - tsconfigPaths() - ] + tsconfigPaths(), + ], })