@remix-run/deno
Advanced tools
Changelog
v2.15.1
Date: 2024-12-09
create-remix
- Move fs-extra
from devDependencies
to dependencies
(#10300)Full Changelog: v2.15.0...v2.15.1
Changelog
v2.15.0
Date: 2024-11-19
Stabilize the future.v3_routeConfig
future flag, replacing future.unstable_routeConfig
. This enables support for routes.ts
to assist with the migration to React Router v7. (#10236)
Note that if you had already enabled the future.unstable_routeConfig
flag, your route config in app/routes.ts
is no longer defined via the routes
export and must now be defined via the default export.
import { type RouteConfig } from "@remix-run/route-config";
-export const routes: RouteConfig = [];
+export default [] satisfies RouteConfig;