move user routes to end

This commit is contained in:
Nate Moore 2023-03-13 15:04:17 -05:00
parent f6bc6597c8
commit 21b9a99afa
3 changed files with 3 additions and 3 deletions

View file

@ -127,9 +127,9 @@ export default function vercelEdge({
await writeJson(new URL(`./config.json`, _config.outDir), {
version: 3,
routes: [
...userRoutes,
...getRedirects(routes, _config),
{ handle: 'filesystem' },
...userRoutes,
{ src: '/.*', dest: 'render' },
],
});

View file

@ -114,9 +114,9 @@ export default function vercelServerless({
await writeJson(new URL(`./config.json`, _config.outDir), {
version: 3,
routes: [
...userRoutes,
...getRedirects(routes, _config),
{ handle: 'filesystem' },
...userRoutes,
{ src: '/.*', dest: 'render' },
],
});

View file

@ -48,7 +48,7 @@ export default function vercelStatic({ analytics }: VercelStaticConfig = {}): As
// https://vercel.com/docs/build-output-api/v3#build-output-configuration
await writeJson(new URL(`./config.json`, getVercelOutput(_config.root)), {
version: 3,
routes: [...userRoutes, ...getRedirects(routes, _config), { handle: 'filesystem' }],
routes: [...getRedirects(routes, _config), { handle: 'filesystem' }, ...userRoutes],
});
},
},