Skip to content

Commit ea62a4f

Browse files
authored
fix(command:init): dev command for Next.Js projects (#555)
1 parent 0402375 commit ea62a4f

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

package-lock.json

Lines changed: 4 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/core/frameworks/frameworks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ export const appFrameworks: FrameworkDefinition[] = [
8484
packages: ["next"],
8585
config: {
8686
appBuildCommand: "npm run build",
87-
appDevserverCommand: "npm dev",
87+
appDevserverCommand: "npm run dev",
8888
appDevserverUrl: "http://localhost:3000",
89-
outputLocation: ".",
89+
outputLocation: ".next",
9090
},
9191
},
9292
{

0 commit comments

Comments
 (0)