app router structure support
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import dynamic from 'next/dynamic';
|
||||
|
||||
const App = dynamic(() => import('../../components/AppShell'), {
|
||||
ssr: false,
|
||||
});
|
||||
|
||||
export function generateStaticParams() {
|
||||
return [{ all: ['tabs', 'feed'] }]
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <App />;
|
||||
}
|
||||
Reference in New Issue
Block a user