We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8554ec commit 90c7518Copy full SHA for 90c7518
1 file changed
next.config.ts
@@ -9,7 +9,7 @@ console.log(`Next.js static export mode: ${isStaticExport}`)
9
const repoName = 'codebuilder-frontend';
10
const isGithubPages = !!process.env.GITHUB_PAGES;
11
12
-const nextConfig: NextConfig = {
+const nextConfig = {
13
/**
14
* FIX: The 'turbo' settings have been moved to the top-level 'turbopack' property
15
* as Turbopack is now considered stable in Next.js.
@@ -65,7 +65,7 @@ const nextConfig: NextConfig = {
65
66
return config
67
},
68
-}
+} as unknown as NextConfig;
69
70
// // Only include page.* files for static export, include route.* for all other builds
71
// if (isStaticExport) {
0 commit comments