Skip to content

Commit

Permalink
NextJS 14 next export has been removed
Browse files Browse the repository at this point in the history
  • Loading branch information
shivarm authored Nov 25, 2023

Verified

This commit was signed with the committer’s verified signature. The key has expired.
cytopia cytopia
1 parent 7e8677f commit d69137a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -25,9 +25,9 @@ public QuinoaConfig override(QuinoaConfig delegate, Optional<JsonObject> package
if (delegate.packageManagerCommand().build().equals("run build") && packageJson.isPresent()) {
JsonObject scripts = packageJson.get().getJsonObject("scripts");
if (scripts != null) {
if (!scripts.getString("build").contains("next export")) {
if (!scripts.getString("build")) {
LOG.warn(
"Make sure you define \"build\": \"next build && next export\", in the package.json to make Next work with Quinoa.");
"Make sure you define \"build\": \"next build \", in the package.json to make Next work with Quinoa.");
}
}
}

0 comments on commit d69137a

Please sign in to comment.