app router structure support

This commit is contained in:
ruucm
2024-02-26 00:49:35 -08:00
parent 39fac554ee
commit fb6f86c563
5 changed files with 37 additions and 25 deletions
+13
View File
@@ -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 />;
}