Skip to content
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

Deployment broken with Nx #115

Closed
ebrehault opened this issue Mar 11, 2021 · 8 comments
Closed

Deployment broken with Nx #115

ebrehault opened this issue Mar 11, 2021 · 8 comments
Labels
type: feature code contributing to the implementation of a feature and/or user facing functionality

Comments

@ebrehault
Copy link

Describe the bug
A typical Next.js app built into an Nx monorepo will be located in a subfolder like ./apps/my-site.
When the next.config.jsfile is not in the project root folder, theonBuild command fails with

Error: No static assets found in .next dist (aka no /.next/static). Please check your project configuration. Your next.config.js must be one of `serverless` or `experimental-serverless-trace`. Your build command should include `next build`.

Using base in netlify.toml [build] section does not fix the problem (but it is not the proper approach according the documentation as it is supposed to target a folder containing package.json, while an Nx project contains its package.json in its root, not in each app folder).

To Reproduce
Steps to reproduce the behavior:

  1. Create a monorepo project with Nx
  2. Add a Next.js site
  3. Publish it on Netlify

Expected behavior
The deployment should work

Versions

  • Next.js: ^10.0.8
  • plugin (if installed at fixed version): ^3.0.0

If you're using the CLI to build

  • OS: [e.g. macOS, Windows]
  • netlify/cli version:

If you're using file-based installation

  • netlify.toml:
[build]
  command   = "npm run build"
  publish   = "dist/apps/basic"

[[plugins]]
  package = "@netlify/plugin-nextjs"
@jlengstorf
Copy link

thanks, @ebrehault — we're digging into this!

@jlengstorf jlengstorf added the type: feature code contributing to the implementation of a feature and/or user facing functionality label Mar 16, 2021
@lindsaylevine lindsaylevine added this to the Monorepo support milestone Mar 21, 2021
@rayriffy
Copy link

@jlengstorf I believe that next.config.js should be resolve in publish directory, not directly point to the root of the repository

https://github.com/netlify/netlify-plugin-nextjs/blob/2f564b151552358689ea578563a52f2713345ccd/helpers/getNextConfig.js#L15

@rayriffy
Copy link

Good news, I found a workaround. What you have to do is to build Next application to root repository instead by passing --output-path arguments. More detail

yarn nx build basic --output-path=./

@lindsaylevine
Copy link

hey all! thanks for your patience on this. we're finally getting to work on these nx/greater monorepo issues. we're consolidating everyone's issues into #433, so we'll close this in favor of that. please follow along there, but we'll try to circle back here, too, whenever we release support! 🙏

@ascorbic
Copy link
Contributor

ascorbic commented Jun 30, 2021

@ebrehault @rayriffy This is now released, but not enabled by default yet. Could you try it out? You need to npm install @netlify/plugin-nextjs@latest and then look at the docs to see how it needs to be configured

@ebrehault
Copy link
Author

@ascorbic it works just fine! thanks 🙏
It is a bit counterintuitive to target a publish folder inside the app folder (that's not the Nx way…), but I guess that's not a problem :)

@ascorbic
Copy link
Contributor

Thanks for the update! Yes, unfortunately we have to do that, as we need to be able to work out where the app folder is, and setting the publish dir allows us to do this. Otherwise we can't find the config file or the output dir

@ebrehault
Copy link
Author

Yes, well that's definitely not a problem, moreover the error messages we get from the CLI are very accurate so even someone who skipped the docs (as I did :) ) will understand what to do.
Great work!

serhalp pushed a commit that referenced this issue Apr 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: feature code contributing to the implementation of a feature and/or user facing functionality
Projects
None yet
Development

No branches or pull requests

5 participants