Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
huozhi committed Nov 9, 2021
1 parent 3b6eeec commit dcfa251
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import { lazy, Suspense } from 'react'

const Foo = lazy(() => import('../components/foo.client'))
// TODO: fix code-splitting chunk loading scripting in web runtime.
const Foo = lazy(() =>
import(/* webpackMode: "eager" */ '../components/foo.client')
)

export default function Page() {
return (
Expand Down

0 comments on commit dcfa251

Please sign in to comment.