Open HellWolf93 opened 2 years ago
I also use next version 12.1.1
and build stuck forever.
but now I can build success workaround by import everything from react-rainbow
by using dynamic
here example
/*
remove this
import { Column, TableWithBrowserPagination } from 'react-rainbow-components'
*/
// replace code below
const Column = dynamic(() => import('react-rainbow-components/components/Column'), {
ssr: false,
})
const TableWithBrowserPagination = dynamic(() => import('react-rainbow-components/components/TableWithBrowserPagination'), {
ssr: false,
})
I also use next version
12.1.1
and build stuck forever. but now I can build success workaround by import everything fromreact-rainbow
by usingdynamic
here example
/* remove this import { Column, TableWithBrowserPagination } from 'react-rainbow-components' */ // replace code below const Column = dynamic(() => import('react-rainbow-components/components/Column'), { ssr: false, }) const TableWithBrowserPagination = dynamic(() => import('react-rainbow-components/components/TableWithBrowserPagination'), { ssr: false, })
Which library are you using? this? https://www.npmjs.com/package/@next-tools/dynamic
I also use next version
12.1.1
and build stuck forever. but now I can build success workaround by import everything fromreact-rainbow
by usingdynamic
here example/* remove this import { Column, TableWithBrowserPagination } from 'react-rainbow-components' */ // replace code below const Column = dynamic(() => import('react-rainbow-components/components/Column'), { ssr: false, }) const TableWithBrowserPagination = dynamic(() => import('react-rainbow-components/components/TableWithBrowserPagination'), { ssr: false, })
Which library are you using? this? https://www.npmjs.com/package/@next-tools/dynamic
It's provide from nextJS. you can import directly from nextjs more info https://nextjs.org/docs/advanced-features/dynamic-import
not working for me. My app is with NextJS v13. The issue was still there with NextJS v12. Upgrading to Node v18 do not change anything.
Describe the bug
When trying to generate a production build with NextJS 12, the process gets stuck. It appears to have something to do with the fonts in the global styles. When leaving only 3
@font-face
in the styles everything works fine.To Reproduce 🕹
Steps to reproduce the behavior:
react-rainbow-components
dependencyExpected Behavior 🤔
The app should build correctly.
Current Behavior 😯
The build process hangs forever.
Your Environment 🌎
Desktop (please complete the following information):