We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeabaaa commit cd33ca9Copy full SHA for cd33ca9
app/works/[id]/page.jsx
@@ -2,6 +2,8 @@
2
import {EditorPage} from "../../EditorPage.jsx";
3
import {useParams} from "next/navigation";
4
5
+export const runtime = "edge";
6
+
7
export default function Page() {
8
const {id} = useParams();
9
return <EditorPage id={id} />;
next.config.js
@@ -1,7 +1,7 @@
1
/** @type {import('next').NextConfig} */
const nextConfig = {
- basePath: '/notebook',
- assetPrefix: '/notebook',
+ // basePath: '/notebook',
+ // assetPrefix: '/notebook',
};
export default nextConfig;
0 commit comments