We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d8ee1a commit 0822c7aCopy full SHA for 0822c7a
packages/open-next/src/index.ts
@@ -10,8 +10,8 @@ import { printHeader } from "./build/utils.js";
10
const command = process.argv[2];
11
if (
12
command !== "build" &&
13
- command !== "local:config" &&
14
- command !== "local:run"
+ command !== "generate local" &&
+ command !== "preview"
15
)
16
printHelp();
17
@@ -48,7 +48,7 @@ function parseArgs() {
48
async function buildLocalConfig() {
49
if (!existsSync(LOCAL_CONFIG_PATH)) {
50
console.error(
51
- "open-next.config.local.ts does not exist. You can run `local:config` first to generate it.",
+ "open-next.config.local.ts does not exist. You can run `generate local` first to generate it.",
52
);
53
process.exit(1);
54
}
0 commit comments