mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
0c4362e440
* Always check with the fs when gettings chunks. * Add a new set of test cases for dynamic imports in dev. * Add dynamic import test cases for production. * Add availableChunks support for static exports.
9 lines
168 B
JavaScript
9 lines
168 B
JavaScript
import dynamic from 'next/dynamic'
|
|
|
|
const Hello = dynamic(import('../../components/hello1'), {
|
|
ssr: false,
|
|
loading: () => (<p>LOADING</p>)
|
|
})
|
|
|
|
export default Hello
|