diff --git a/next.config.js b/next.config.js index fc94a5f..d0630e3 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,7 @@ /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, + pageExtensions: ['page.tsx', 'page.ts', 'page.jsx', 'page.js'], async rewrites() { return [ { diff --git a/src/pages/forget-password.tsx b/src/pages/forget-password.page.tsx similarity index 100% rename from src/pages/forget-password.tsx rename to src/pages/forget-password.page.tsx diff --git a/src/pages/index.tsx b/src/pages/index.page.tsx similarity index 100% rename from src/pages/index.tsx rename to src/pages/index.page.tsx diff --git a/src/pages/login.tsx b/src/pages/login.page.tsx similarity index 100% rename from src/pages/login.tsx rename to src/pages/login.page.tsx diff --git a/src/pages/register.tsx b/src/pages/register.page.tsx similarity index 100% rename from src/pages/register.tsx rename to src/pages/register.page.tsx