-
Notifications
You must be signed in to change notification settings - Fork 87
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
refactor: locate next.config.js by root publish directory, instead of root of repository #178
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot @rayriffy!
For the Nx specific logic, I will delegate to @lindsaylevine, but the PR looks good otherwise from a code standpoint, except for one small suggestion 👍
I am wondering though: next.config.js
is loaded is many more places in this plugin that copyNextAssets.js
. You can see it by checking which functions are calling getNextConfig()
. Shouldn't all of those places also use the publish directory as base?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks so much for this!!! +1 to what mickael said about getNextConfig/getNextDistDir being called in several places :)
I've make changes that being requested and my god my eyes now in tears. Yes, I just realized that I already reverted those changes because clearly this is way out of my control. Might try again tmr if you wanted to. |
oh my goodness @rayriffy |
@rayriffy i think we might want to rethink how our config gets passed around after seeing all the work this has taken 😲 we really appreciate it though and will keep you updated |
I am thinking about some kind of file-based configuration generated in PS. Yeah, it quite hard to track down all functions that needs to be modified, I would like to suggest to enforce named exports stack and refactor code to TypeScript. |
hey @rayriffy! i'm so sorry for neglecting this PR. i think i felt bad about closing it after all of your hard work! :( here's what happened overall though: your last comment stemmed a big conversation internally about the right way we could do this.
we were lightly exploring ideas of global config, file-based config like you suggested, passing down the config everywhere like you did in your work (with publishPath), etc. ultimately we knew it'd take a lot of work/thought before we could really prioritize this, and so here we are 😅 . i'm opening a new issue shortly with our plan going forward. it'll be very close to what you've done, but passing the nextConfig down. i will make sure that, in this work, we will also check for a config in the publish dir if we cannot find one at the root. thank you so much for all your hard work on this. i/we truly appreciate it <3. let me know if you have any other feedback. i'll keep the exports/typescript note in mind though that would be difficult to prioritize any time soon :/. |
Description
This PR should solves #115 to handle edge cases when user build Netlify site and export
.next
andnext.config.js
to somewhere else. In case of Nx after build is succeed,next.config
and.next
is generated indists/apps/<application name>
which is nessesary to use this plugin but current code still always lookingnext.config.js
in root repository causing builds to failed due to plugin error.https://github.com/netlify/netlify-plugin-nextjs/blob/2f564b151552358689ea578563a52f2713345ccd/helpers/getNextConfig.js#L15