From b2e4ade89601be5da03edd38eaf692bbd5303f37 Mon Sep 17 00:00:00 2001 From: feugy Date: Tue, 20 Feb 2024 14:18:32 +0100 Subject: [PATCH] chore: fixes build --- apps/nextjs/next.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/nextjs/next.config.js b/apps/nextjs/next.config.js index e1c2c4b..ebd65e8 100644 --- a/apps/nextjs/next.config.js +++ b/apps/nextjs/next.config.js @@ -3,7 +3,8 @@ const nextConfig = { experimental: { serverActions: true, }, - // reactStrictMode: false, + // https://stackoverflow.com/a/70841058 + pageExtensions: ['page.tsx', 'page.ts', 'page.jsx', 'page.js'], }; module.exports = nextConfig;