diff --git a/bench/nested-deps/bench.mjs b/bench/nested-deps/bench.mjs index b25eba322db0..d8ad44c23d85 100644 --- a/bench/nested-deps/bench.mjs +++ b/bench/nested-deps/bench.mjs @@ -110,7 +110,7 @@ function runNextCommandDev(argv, opts = {}) { function handleStdout(data) { const message = data.toString() const bootupMarkers = { - dev: /compiled successfully/i, + dev: /compiled .*successfully/i, start: /started server/i, } if ( diff --git a/docs/basic-features/script.md b/docs/basic-features/script.md index 8ae5a8036e1b..49041234fcba 100644 --- a/docs/basic-features/script.md +++ b/docs/basic-features/script.md @@ -7,6 +7,7 @@ description: Next.js helps you optimize loading third-party scripts with the bui
Examples