-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(nextjs): refactor how webpack config is loaded with nextjs #15650
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
Left a comment, then deleted it, because i was testing an issue that is not addressed, sorry! |
6b98ff0
to
38243ec
Compare
38243ec
to
22429da
Compare
22429da
to
1ea8b47
Compare
1ea8b47
to
2feae02
Compare
2feae02
to
093fed1
Compare
093fed1
to
0688ddf
Compare
0688ddf
to
abd6f7c
Compare
Co-authored-by: FrozenPandaz <[email protected]> (cherry picked from commit be81405)
Dunno should it be here but when building nextjs app it can't defy path correctly (ig it is next issue But not sure)
// File: W:\vault\apps\web\site\app\layout.tsx
import * as entry from '../../../../../../app/layout'
// path must be ../../../apps/subdir/project-name/app/layout
// aka this ../../../apps/web/site/app/layout
import type { ResolvingMetadata } from 'next/dist/lib/metadata/types/metadata-interface'
type TEntry = typeof entry
// Check that the entry is a valid entry
... next.config.js typescript: {
ignoreBuildErrors: true // will solve the issue but this is workaround.
}, |
@skaneprime that's a known issue: #14558 |
…15650) Co-authored-by: FrozenPandaz <[email protected]>
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
Currently, there is a breaking change that exists after you upgrade your
next
dependency tonext:13.2.x
This happened because we would pass the webpack configuration to the nextJs's build function which is no longer supported
What does the mean for new / existing workspaces
TODO
withNxnew
functionbuild.impl
Fixes: #15214, #13194