From f62227f7964174fb7737094143364348f5989528 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Mart=C3=ADn=20Seery?= Date: Fri, 22 Apr 2022 11:03:53 -0300 Subject: [PATCH] feat(vercel): Support `trailingSlash` (#3176) --- packages/integrations/vercel/src/index.ts | 48 ++++++++++++++++++++--- 1 file changed, 43 insertions(+), 5 deletions(-) diff --git a/packages/integrations/vercel/src/index.ts b/packages/integrations/vercel/src/index.ts index 439eeeb04c..35d20d42f6 100644 --- a/packages/integrations/vercel/src/index.ts +++ b/packages/integrations/vercel/src/index.ts @@ -87,11 +87,49 @@ export default function vercel(): AstroIntegration { version: 3, basePath: '/', pages404: false, - rewrites: staticRoutes.map((route) => ({ - source: route.pathname, - regex: route.pattern.toString(), - destination: `/${ENTRYFILE}`, - })), + redirects: + // Extracted from Next.js v12.1.5 + _config.trailingSlash === 'always' + ? [ + { + source: '/:file((?!\\.well-known(?:/.*)?)(?:[^/]+/)*[^/]+\\.\\w+)/', + destination: '/:file', + internal: true, + statusCode: 308, + regex: '^(?:/((?!\\.well-known(?:/.*)?)(?:[^/]+/)*[^/]+\\.\\w+))/$', + }, + { + source: '/:notfile((?!\\.well-known(?:/.*)?)(?:[^/]+/)*[^/\\.]+)', + destination: '/:notfile/', + internal: true, + statusCode: 308, + regex: '^(?:/((?!\\.well-known(?:/.*)?)(?:[^/]+/)*[^/\\.]+))$', + }, + ] + : _config.trailingSlash === 'never' + ? [ + { + source: '/:path+/', + destination: '/:path+', + internal: true, + statusCode: 308, + regex: '^(?:/((?:[^/]+?)(?:/(?:[^/]+?))*))/$', + }, + ] + : undefined, + rewrites: staticRoutes.map((route) => { + let source = route.pathname as string; + + if (_config.trailingSlash === 'always' && !source.endsWith('/')) { + source += '/'; + } + + return { + source, + regex: route.pattern.toString(), + destination: `/${ENTRYFILE}`, + }; + }), dynamicRoutes: dynamicRoutes.map((route) => ({ page: `/${ENTRYFILE}`, regex: route.pattern.toString(),