We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7a6bae commit dc21c04Copy full SHA for dc21c04
2 files changed
next.config.ts
@@ -1,7 +1,7 @@
1
import type { NextConfig } from "next";
2
3
const nextConfig: NextConfig = {
4
- output: 'export',
+ // output: 'export',
5
};
6
7
export default nextConfig;
src/app/sfu/courses/[dept]/[number]/page.tsx
@@ -26,9 +26,9 @@ export async function generateStaticParams() {
26
}
27
28
// With static export, only the paths from generateStaticParams are valid
29
-export const dynamicParams = false;
+// export const dynamicParams = false;
30
// Ensure this route is fully static
31
-export const revalidate = false;
+// export const revalidate = false;
32
33
export default async function CoursePage({ params }: PageProps) {
34
const resolvedParams = await params;
0 commit comments