rsnext/packages/next/client/app-next.js

13 lines
282 B
JavaScript
Raw Normal View History

2022-05-25 11:46:26 +02:00
import { hydrate, version } from './app-index'
// Include app-router and layout-router in the main chunk
import 'next/dist/client/components/app-router.client.js'
import 'next/dist/client/components/layout-router.client.js'
window.next = {
version,
appDir: true,
}
hydrate()