next 16.1.1-canary.32 → 16.1.1-canary.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/.build-commit +1 -1
- package/dist/bin/next +2 -2
- package/dist/build/index.js +3 -3
- package/dist/build/swc/index.js +1 -1
- package/dist/build/webpack-config.js +3 -3
- package/dist/bundle-analyzer/404.html +2 -2
- package/dist/bundle-analyzer/__next.__PAGE__.txt +1 -1
- package/dist/bundle-analyzer/__next._full.txt +1 -1
- package/dist/bundle-analyzer/__next._head.txt +1 -1
- package/dist/bundle-analyzer/__next._index.txt +1 -1
- package/dist/bundle-analyzer/__next._tree.txt +1 -1
- package/dist/bundle-analyzer/_not-found/__next._full.txt +1 -1
- package/dist/bundle-analyzer/_not-found/__next._head.txt +1 -1
- package/dist/bundle-analyzer/_not-found/__next._index.txt +1 -1
- package/dist/bundle-analyzer/_not-found/__next._not-found.__PAGE__.txt +1 -1
- package/dist/bundle-analyzer/_not-found/__next._not-found.txt +1 -1
- package/dist/bundle-analyzer/_not-found/__next._tree.txt +1 -1
- package/dist/bundle-analyzer/_not-found.html +2 -2
- package/dist/bundle-analyzer/_not-found.txt +1 -1
- package/dist/bundle-analyzer/index.html +2 -2
- package/dist/bundle-analyzer/index.txt +1 -1
- package/dist/client/app-bootstrap.js +1 -1
- package/dist/client/index.js +1 -1
- package/dist/compiled/next-server/server.runtime.prod.js +1 -1
- package/dist/esm/build/index.js +3 -3
- package/dist/esm/build/swc/index.js +1 -1
- package/dist/esm/build/webpack-config.js +3 -3
- package/dist/esm/client/app-bootstrap.js +1 -1
- package/dist/esm/client/index.js +1 -1
- package/dist/esm/server/dev/hot-reloader-turbopack.js +1 -1
- package/dist/esm/server/dev/hot-reloader-webpack.js +1 -1
- package/dist/esm/server/lib/app-info-log.js +1 -1
- package/dist/esm/server/lib/start-server.js +1 -1
- package/dist/esm/shared/lib/errors/canary-only-config-error.js +1 -1
- package/dist/server/dev/hot-reloader-turbopack.js +1 -1
- package/dist/server/dev/hot-reloader-webpack.js +1 -1
- package/dist/server/lib/app-info-log.js +1 -1
- package/dist/server/lib/start-server.js +1 -1
- package/dist/shared/lib/errors/canary-only-config-error.js +1 -1
- package/dist/telemetry/anonymous-meta.js +1 -1
- package/dist/telemetry/events/session-stopped.js +2 -2
- package/dist/telemetry/events/version.js +2 -2
- package/package.json +15 -15
- /package/dist/bundle-analyzer/_next/static/{ch2xoP64DtWbb5dkwAboX → 0oIhBbysU4HGiEvWfSsub}/_buildManifest.js +0 -0
- /package/dist/bundle-analyzer/_next/static/{ch2xoP64DtWbb5dkwAboX → 0oIhBbysU4HGiEvWfSsub}/_clientMiddlewareManifest.json +0 -0
- /package/dist/bundle-analyzer/_next/static/{ch2xoP64DtWbb5dkwAboX → 0oIhBbysU4HGiEvWfSsub}/_ssgManifest.js +0 -0
package/dist/.build-commit
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
dc5939158af99146e9992619b347336a193442c0
|
package/dist/bin/next
CHANGED
|
@@ -84,7 +84,7 @@ const program = new NextRootCommand();
|
|
|
84
84
|
program.name('next').description('The Next.js CLI allows you to develop, build, start your application, and more.').configureHelp({
|
|
85
85
|
formatHelp: (cmd, helper)=>(0, _formatclihelpoutput.formatCliHelpOutput)(cmd, helper),
|
|
86
86
|
subcommandTerm: (cmd)=>`${cmd.name()} ${cmd.usage()}`
|
|
87
|
-
}).helpCommand(false).helpOption('-h, --help', 'Displays this message.').version(`Next.js v${"16.1.1-canary.
|
|
87
|
+
}).helpCommand(false).helpOption('-h, --help', 'Displays this message.').version(`Next.js v${"16.1.1-canary.33"}`, '-v, --version', 'Outputs the Next.js version.');
|
|
88
88
|
program.command('build').description('Creates an optimized production build of your application. The output displays information about each route.').argument('[directory]', `A directory on which to build the application. ${(0, _picocolors.italic)('If no directory is provided, the current directory will be used.')}`).option('--experimental-analyze', 'Analyze bundle output. Only compatible with Turbopack.').option('-d, --debug', 'Enables a more verbose build output.').option('--debug-prerender', 'Enables debug mode for prerendering. Not for production use!').option('--no-mangling', 'Disables mangling.').option('--profile', 'Enables production profiling for React.').option('--experimental-app-only', 'Builds only App Router routes.').option('--turbo', 'Builds using Turbopack.').option('--turbopack', 'Builds using Turbopack.').option('--webpack', 'Builds using webpack.').addOption(new _commander.Option('--experimental-build-mode [mode]', 'Uses an experimental build mode.').choices([
|
|
89
89
|
'compile',
|
|
90
90
|
'generate',
|
|
@@ -162,7 +162,7 @@ program.command('telemetry').description(`Allows you to enable or disable Next.j
|
|
|
162
162
|
program.command('typegen').description('Generate TypeScript definitions for routes, pages, and layouts without running a full build.').argument('[directory]', `A directory on which to generate types. ${(0, _picocolors.italic)('If no directory is provided, the current directory will be used.')}`).action((directory, options)=>// ensure process exits after typegen completes so open handles/connections
|
|
163
163
|
// don't cause process to hang
|
|
164
164
|
import('../cli/next-typegen.js').then((mod)=>mod.nextTypegen(options, directory).then(()=>process.exit(0)))).usage('[directory] [options]');
|
|
165
|
-
const nextVersion = "16.1.1-canary.
|
|
165
|
+
const nextVersion = "16.1.1-canary.33" || 'unknown';
|
|
166
166
|
program.command('upgrade').description('Upgrade Next.js apps to desired versions with a single command.').argument('[directory]', `A Next.js project directory to upgrade. ${(0, _picocolors.italic)('If no directory is provided, the current directory will be used.')}`).usage('[directory] [options]').option('--revision <revision>', 'Specify the target Next.js version using an NPM dist tag (e.g. "latest", "canary", "rc", "beta") or an exact version number (e.g. "15.0.0").', nextVersion.includes('-canary.') ? 'canary' : nextVersion.includes('-rc.') ? 'rc' : nextVersion.includes('-beta.') ? 'beta' : 'latest').option('--verbose', 'Verbose output', false).action(async (directory, options)=>{
|
|
167
167
|
const mod = await import('../cli/next-upgrade.js');
|
|
168
168
|
mod.spawnNextUpgrade(directory, options);
|
package/dist/build/index.js
CHANGED
|
@@ -380,7 +380,7 @@ async function build(dir, experimentalAnalyze = false, reactProductionProfiling
|
|
|
380
380
|
try {
|
|
381
381
|
const nextBuildSpan = (0, _trace.trace)('next-build', undefined, {
|
|
382
382
|
buildMode: experimentalBuildMode,
|
|
383
|
-
version: "16.1.1-canary.
|
|
383
|
+
version: "16.1.1-canary.33"
|
|
384
384
|
});
|
|
385
385
|
_buildcontext.NextBuildContext.nextBuildSpan = nextBuildSpan;
|
|
386
386
|
_buildcontext.NextBuildContext.dir = dir;
|
|
@@ -890,7 +890,7 @@ async function build(dir, experimentalAnalyze = false, reactProductionProfiling
|
|
|
890
890
|
// Files outside of the distDir can be "type": "module"
|
|
891
891
|
await writeFileUtf8(_path.default.join(distDir, 'package.json'), '{"type": "commonjs"}');
|
|
892
892
|
// These are written to distDir, so they need to come after creating and cleaning distDr.
|
|
893
|
-
await (0, _builddiagnostics.recordFrameworkVersion)("16.1.1-canary.
|
|
893
|
+
await (0, _builddiagnostics.recordFrameworkVersion)("16.1.1-canary.33");
|
|
894
894
|
await (0, _builddiagnostics.updateBuildDiagnostics)({
|
|
895
895
|
buildStage: 'start'
|
|
896
896
|
});
|
|
@@ -2573,7 +2573,7 @@ async function build(dir, experimentalAnalyze = false, reactProductionProfiling
|
|
|
2573
2573
|
configOutDir: _path.default.join(dir, configOutDir),
|
|
2574
2574
|
staticPages,
|
|
2575
2575
|
serverPropsPages,
|
|
2576
|
-
nextVersion: "16.1.1-canary.
|
|
2576
|
+
nextVersion: "16.1.1-canary.33",
|
|
2577
2577
|
tracingRoot: outputFileTracingRoot,
|
|
2578
2578
|
hasNodeMiddleware,
|
|
2579
2579
|
hasInstrumentationHook,
|
package/dist/build/swc/index.js
CHANGED
|
@@ -130,7 +130,7 @@ function _interop_require_wildcard(obj, nodeInterop) {
|
|
|
130
130
|
}
|
|
131
131
|
return newObj;
|
|
132
132
|
}
|
|
133
|
-
const nextVersion = "16.1.1-canary.
|
|
133
|
+
const nextVersion = "16.1.1-canary.33";
|
|
134
134
|
const ArchName = (0, _os.arch)();
|
|
135
135
|
const PlatformName = (0, _os.platform)();
|
|
136
136
|
function infoLog(...args) {
|
|
@@ -1725,7 +1725,7 @@ async function getBaseWebpackConfig(dir, { buildId, encryptionKey, config, compi
|
|
|
1725
1725
|
isClient && new _copyfileplugin.CopyFilePlugin({
|
|
1726
1726
|
// file path to build output of `@next/polyfill-nomodule`
|
|
1727
1727
|
filePath: require.resolve('./polyfills/polyfill-nomodule'),
|
|
1728
|
-
cacheKey: "16.1.1-canary.
|
|
1728
|
+
cacheKey: "16.1.1-canary.33",
|
|
1729
1729
|
name: `static/chunks/polyfills${dev ? '' : '-[hash]'}.js`,
|
|
1730
1730
|
minimize: false,
|
|
1731
1731
|
info: {
|
|
@@ -1919,7 +1919,7 @@ async function getBaseWebpackConfig(dir, { buildId, encryptionKey, config, compi
|
|
|
1919
1919
|
// - Next.js location on disk (some loaders use absolute paths and some resolve options depend on absolute paths)
|
|
1920
1920
|
// - Next.js version
|
|
1921
1921
|
// - next.config.js keys that affect compilation
|
|
1922
|
-
version: `${__dirname}|${"16.1.1-canary.
|
|
1922
|
+
version: `${__dirname}|${"16.1.1-canary.33"}|${configVars}`,
|
|
1923
1923
|
cacheDirectory: _path.default.join(distDir, 'cache', 'webpack'),
|
|
1924
1924
|
// For production builds, it's more efficient to compress all cache files together instead of compression each one individually.
|
|
1925
1925
|
// So we disable compression here and allow the build runner to take care of compressing the cache as a whole.
|
|
@@ -1975,7 +1975,7 @@ async function getBaseWebpackConfig(dir, { buildId, encryptionKey, config, compi
|
|
|
1975
1975
|
type: 'filesystem',
|
|
1976
1976
|
directory: cache.cacheDirectory
|
|
1977
1977
|
},
|
|
1978
|
-
version: `${__dirname}|${"16.1.1-canary.
|
|
1978
|
+
version: `${__dirname}|${"16.1.1-canary.33"}|${configVars}`
|
|
1979
1979
|
};
|
|
1980
1980
|
}
|
|
1981
1981
|
if (process.env.NEXT_WEBPACK_LOGGING) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--0oIhBbysU4HGiEvWfSsub--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/adecd0ef71a11c8f.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/3435cab23cc60e29.js"/><script src="/_next/static/chunks/f20fc39f69d825e2.js" async=""></script><script src="/_next/static/chunks/fa69f4a14e56c60f.js" async=""></script><script src="/_next/static/chunks/turbopack-427ad32bfc5e9599.js" async=""></script><script src="/_next/static/chunks/fa01bd14d5942b77.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>Next.js Bundle Analyzer</title><meta name="description" content="Visualize and analyze your Next.js bundle sizes with interactive treemap and dependency analysis"/><script>
|
|
2
2
|
(function() {
|
|
3
3
|
const theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
|
|
4
4
|
document.documentElement.classList.toggle('dark', theme === 'dark');
|
|
@@ -7,4 +7,4 @@
|
|
|
7
7
|
document.documentElement.classList.toggle('dark', e.matches);
|
|
8
8
|
});
|
|
9
9
|
})();
|
|
10
|
-
</script><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="font-sans antialiased"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/3435cab23cc60e29.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[34876,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n3:I[92998,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n4:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"ViewportBoundary\"]\n9:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"MetadataBoundary\"]\nb:I[41704,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n:HL[\"/_next/static/chunks/adecd0ef71a11c8f.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"
|
|
10
|
+
</script><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="font-sans antialiased"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/3435cab23cc60e29.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[34876,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n3:I[92998,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n4:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"ViewportBoundary\"]\n9:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"MetadataBoundary\"]\nb:I[41704,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n:HL[\"/_next/static/chunks/adecd0ef71a11c8f.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"0oIhBbysU4HGiEvWfSsub\",\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/adecd0ef71a11c8f.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/fa01bd14d5942b77.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"suppressHydrationWarning\":true,\"children\":[[\"$\",\"head\",null,{\"children\":[\"$\",\"script\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"\\n (function() {\\n const theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';\\n document.documentElement.classList.toggle('dark', theme === 'dark');\\n\\n window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', (e) =\u003e {\\n document.documentElement.classList.toggle('dark', e.matches);\\n });\\n })();\\n \"}}]}],[\"$\",\"body\",null,{\"className\":\"font-sans antialiased\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L7\",null,{\"children\":\"$@8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$@a\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$b\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"title\",\"0\",{\"children\":\"Next.js Bundle Analyzer\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Visualize and analyze your Next.js bundle sizes with interactive treemap and dependency analysis\"}]]\n6:null\n"])</script></body></html>
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
3:I[79331,["/_next/static/chunks/e6022e40e11f5859.js"],"default"]
|
|
4
4
|
6:I[26282,["/_next/static/chunks/fa01bd14d5942b77.js"],"OutletBoundary"]
|
|
5
5
|
7:"$Sreact.suspense"
|
|
6
|
-
0:{"buildId":"
|
|
6
|
+
0:{"buildId":"0oIhBbysU4HGiEvWfSsub","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/e6022e40e11f5859.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
|
7
7
|
4:{}
|
|
8
8
|
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
|
9
9
|
8:null
|
|
@@ -9,7 +9,7 @@ b:I[26282,["/_next/static/chunks/fa01bd14d5942b77.js"],"ViewportBoundary"]
|
|
|
9
9
|
d:I[26282,["/_next/static/chunks/fa01bd14d5942b77.js"],"MetadataBoundary"]
|
|
10
10
|
f:I[41704,["/_next/static/chunks/fa01bd14d5942b77.js"],"default"]
|
|
11
11
|
:HL["/_next/static/chunks/adecd0ef71a11c8f.css","style"]
|
|
12
|
-
0:{"P":null,"b":"
|
|
12
|
+
0:{"P":null,"b":"0oIhBbysU4HGiEvWfSsub","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/adecd0ef71a11c8f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"\n (function() {\n const theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';\n document.documentElement.classList.toggle('dark', theme === 'dark');\n\n window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', (e) => {\n document.documentElement.classList.toggle('dark', e.matches);\n });\n })();\n "}}]}],["$","body",null,{"className":"font-sans antialiased","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"Component":"$5","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@6","$@7"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/e6022e40e11f5859.js","async":true,"nonce":"$undefined"}]],["$","$L8",null,{"children":["$","$9",null,{"name":"Next.MetadataOutlet","children":"$@a"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Lb",null,{"children":"$@c"}],["$","div",null,{"hidden":true,"children":["$","$Ld",null,{"children":["$","$9",null,{"name":"Next.Metadata","children":"$@e"}]}]}],null]}],false]],"m":"$undefined","G":["$f",[]],"S":true}
|
|
13
13
|
6:{}
|
|
14
14
|
7:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params"
|
|
15
15
|
c:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
2:I[26282,["/_next/static/chunks/fa01bd14d5942b77.js"],"ViewportBoundary"]
|
|
3
3
|
4:I[26282,["/_next/static/chunks/fa01bd14d5942b77.js"],"MetadataBoundary"]
|
|
4
4
|
5:"$Sreact.suspense"
|
|
5
|
-
0:{"buildId":"
|
|
5
|
+
0:{"buildId":"0oIhBbysU4HGiEvWfSsub","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],null]}],"loading":null,"isPartial":false}
|
|
6
6
|
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
7
7
|
6:[["$","title","0",{"children":"Next.js Bundle Analyzer"}],["$","meta","1",{"name":"description","content":"Visualize and analyze your Next.js bundle sizes with interactive treemap and dependency analysis"}]]
|
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
2:I[34876,["/_next/static/chunks/fa01bd14d5942b77.js"],"default"]
|
|
3
3
|
3:I[92998,["/_next/static/chunks/fa01bd14d5942b77.js"],"default"]
|
|
4
4
|
:HL["/_next/static/chunks/adecd0ef71a11c8f.css","style"]
|
|
5
|
-
0:{"buildId":"
|
|
5
|
+
0:{"buildId":"0oIhBbysU4HGiEvWfSsub","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/adecd0ef71a11c8f.css","precedence":"next"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"\n (function() {\n const theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';\n document.documentElement.classList.toggle('dark', theme === 'dark');\n\n window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', (e) => {\n document.documentElement.classList.toggle('dark', e.matches);\n });\n })();\n "}}]}],["$","body",null,{"className":"font-sans antialiased","children":["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]]}]]}],"loading":null,"isPartial":false}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
:HL["/_next/static/chunks/adecd0ef71a11c8f.css","style"]
|
|
2
|
-
0:{"buildId":"
|
|
2
|
+
0:{"buildId":"0oIhBbysU4HGiEvWfSsub","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
9:I[26282,["/_next/static/chunks/fa01bd14d5942b77.js"],"MetadataBoundary"]
|
|
8
8
|
b:I[41704,["/_next/static/chunks/fa01bd14d5942b77.js"],"default"]
|
|
9
9
|
:HL["/_next/static/chunks/adecd0ef71a11c8f.css","style"]
|
|
10
|
-
0:{"P":null,"b":"
|
|
10
|
+
0:{"P":null,"b":"0oIhBbysU4HGiEvWfSsub","c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/adecd0ef71a11c8f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/fa01bd14d5942b77.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"\n (function() {\n const theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';\n document.documentElement.classList.toggle('dark', theme === 'dark');\n\n window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', (e) => {\n document.documentElement.classList.toggle('dark', e.matches);\n });\n })();\n "}}]}],["$","body",null,{"className":"font-sans antialiased","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L7",null,{"children":"$@8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@a"}]}]}],null]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
|
|
11
11
|
8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
12
12
|
a:[["$","title","0",{"children":"Next.js Bundle Analyzer"}],["$","meta","1",{"name":"description","content":"Visualize and analyze your Next.js bundle sizes with interactive treemap and dependency analysis"}]]
|
|
13
13
|
6:null
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
2:I[26282,["/_next/static/chunks/fa01bd14d5942b77.js"],"ViewportBoundary"]
|
|
3
3
|
4:I[26282,["/_next/static/chunks/fa01bd14d5942b77.js"],"MetadataBoundary"]
|
|
4
4
|
5:"$Sreact.suspense"
|
|
5
|
-
0:{"buildId":"
|
|
5
|
+
0:{"buildId":"0oIhBbysU4HGiEvWfSsub","rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],null]}],"loading":null,"isPartial":false}
|
|
6
6
|
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
7
7
|
6:[["$","title","0",{"children":"Next.js Bundle Analyzer"}],["$","meta","1",{"name":"description","content":"Visualize and analyze your Next.js bundle sizes with interactive treemap and dependency analysis"}]]
|
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
2:I[34876,["/_next/static/chunks/fa01bd14d5942b77.js"],"default"]
|
|
3
3
|
3:I[92998,["/_next/static/chunks/fa01bd14d5942b77.js"],"default"]
|
|
4
4
|
:HL["/_next/static/chunks/adecd0ef71a11c8f.css","style"]
|
|
5
|
-
0:{"buildId":"
|
|
5
|
+
0:{"buildId":"0oIhBbysU4HGiEvWfSsub","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/adecd0ef71a11c8f.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/fa01bd14d5942b77.js","async":true}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"\n (function() {\n const theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';\n document.documentElement.classList.toggle('dark', theme === 'dark');\n\n window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', (e) => {\n document.documentElement.classList.toggle('dark', e.matches);\n });\n })();\n "}}]}],["$","body",null,{"className":"font-sans antialiased","children":["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]]}]]}],"loading":null,"isPartial":false}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
1:"$Sreact.fragment"
|
|
2
2
|
2:I[26282,["/_next/static/chunks/fa01bd14d5942b77.js"],"OutletBoundary"]
|
|
3
3
|
3:"$Sreact.suspense"
|
|
4
|
-
0:{"buildId":"
|
|
4
|
+
0:{"buildId":"0oIhBbysU4HGiEvWfSsub","rsc":["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
|
|
5
5
|
4:null
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
1:"$Sreact.fragment"
|
|
2
2
|
2:I[34876,["/_next/static/chunks/fa01bd14d5942b77.js"],"default"]
|
|
3
3
|
3:I[92998,["/_next/static/chunks/fa01bd14d5942b77.js"],"default"]
|
|
4
|
-
0:{"buildId":"
|
|
4
|
+
0:{"buildId":"0oIhBbysU4HGiEvWfSsub","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
:HL["/_next/static/chunks/adecd0ef71a11c8f.css","style"]
|
|
2
|
-
0:{"buildId":"
|
|
2
|
+
0:{"buildId":"0oIhBbysU4HGiEvWfSsub","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"/_not-found","paramType":null,"paramKey":"/_not-found","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--0oIhBbysU4HGiEvWfSsub--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/adecd0ef71a11c8f.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/3435cab23cc60e29.js"/><script src="/_next/static/chunks/f20fc39f69d825e2.js" async=""></script><script src="/_next/static/chunks/fa69f4a14e56c60f.js" async=""></script><script src="/_next/static/chunks/turbopack-427ad32bfc5e9599.js" async=""></script><script src="/_next/static/chunks/fa01bd14d5942b77.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>Next.js Bundle Analyzer</title><meta name="description" content="Visualize and analyze your Next.js bundle sizes with interactive treemap and dependency analysis"/><script>
|
|
2
2
|
(function() {
|
|
3
3
|
const theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
|
|
4
4
|
document.documentElement.classList.toggle('dark', theme === 'dark');
|
|
@@ -7,4 +7,4 @@
|
|
|
7
7
|
document.documentElement.classList.toggle('dark', e.matches);
|
|
8
8
|
});
|
|
9
9
|
})();
|
|
10
|
-
</script><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="font-sans antialiased"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/3435cab23cc60e29.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[34876,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n3:I[92998,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n4:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"ViewportBoundary\"]\n9:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"MetadataBoundary\"]\nb:I[41704,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n:HL[\"/_next/static/chunks/adecd0ef71a11c8f.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"
|
|
10
|
+
</script><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="font-sans antialiased"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/3435cab23cc60e29.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[34876,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n3:I[92998,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n4:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"ViewportBoundary\"]\n9:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"MetadataBoundary\"]\nb:I[41704,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n:HL[\"/_next/static/chunks/adecd0ef71a11c8f.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"0oIhBbysU4HGiEvWfSsub\",\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/adecd0ef71a11c8f.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/fa01bd14d5942b77.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"suppressHydrationWarning\":true,\"children\":[[\"$\",\"head\",null,{\"children\":[\"$\",\"script\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"\\n (function() {\\n const theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';\\n document.documentElement.classList.toggle('dark', theme === 'dark');\\n\\n window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', (e) =\u003e {\\n document.documentElement.classList.toggle('dark', e.matches);\\n });\\n })();\\n \"}}]}],[\"$\",\"body\",null,{\"className\":\"font-sans antialiased\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L7\",null,{\"children\":\"$@8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$@a\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$b\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"title\",\"0\",{\"children\":\"Next.js Bundle Analyzer\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Visualize and analyze your Next.js bundle sizes with interactive treemap and dependency analysis\"}]]\n6:null\n"])</script></body></html>
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
9:I[26282,["/_next/static/chunks/fa01bd14d5942b77.js"],"MetadataBoundary"]
|
|
8
8
|
b:I[41704,["/_next/static/chunks/fa01bd14d5942b77.js"],"default"]
|
|
9
9
|
:HL["/_next/static/chunks/adecd0ef71a11c8f.css","style"]
|
|
10
|
-
0:{"P":null,"b":"
|
|
10
|
+
0:{"P":null,"b":"0oIhBbysU4HGiEvWfSsub","c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/adecd0ef71a11c8f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/fa01bd14d5942b77.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"\n (function() {\n const theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';\n document.documentElement.classList.toggle('dark', theme === 'dark');\n\n window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', (e) => {\n document.documentElement.classList.toggle('dark', e.matches);\n });\n })();\n "}}]}],["$","body",null,{"className":"font-sans antialiased","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L7",null,{"children":"$@8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@a"}]}]}],null]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
|
|
11
11
|
8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
12
12
|
a:[["$","title","0",{"children":"Next.js Bundle Analyzer"}],["$","meta","1",{"name":"description","content":"Visualize and analyze your Next.js bundle sizes with interactive treemap and dependency analysis"}]]
|
|
13
13
|
6:null
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--0oIhBbysU4HGiEvWfSsub--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/adecd0ef71a11c8f.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/3435cab23cc60e29.js"/><script src="/_next/static/chunks/f20fc39f69d825e2.js" async=""></script><script src="/_next/static/chunks/fa69f4a14e56c60f.js" async=""></script><script src="/_next/static/chunks/turbopack-427ad32bfc5e9599.js" async=""></script><script src="/_next/static/chunks/fa01bd14d5942b77.js" async=""></script><script src="/_next/static/chunks/e6022e40e11f5859.js" async=""></script><title>Next.js Bundle Analyzer</title><meta name="description" content="Visualize and analyze your Next.js bundle sizes with interactive treemap and dependency analysis"/><script>
|
|
2
2
|
(function() {
|
|
3
3
|
const theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
|
|
4
4
|
document.documentElement.classList.toggle('dark', theme === 'dark');
|
|
@@ -7,4 +7,4 @@
|
|
|
7
7
|
document.documentElement.classList.toggle('dark', e.matches);
|
|
8
8
|
});
|
|
9
9
|
})();
|
|
10
|
-
</script><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="font-sans antialiased"><div hidden=""><!--$--><!--/$--></div><main class="h-screen flex flex-col bg-background"><div class="flex-none px-4 py-2 border-b border-border flex items-center gap-3"><div class="flex-1 flex"><div class="flex items-center gap-2 min-w-64 max-w-full"><button class="inline-flex items-center gap-2 whitespace-nowrap rounded-md font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0 border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground h-9 px-4 py-2 flex-grow-1 w-full justify-between font-mono text-sm" role="combobox" aria-expanded="false" disabled="" type="button" aria-haspopup="dialog" aria-controls="radix-_R_lbtb_" data-state="closed"><div class="flex items-center"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-loader mr-2 inline animate-spin" aria-hidden="true"><path d="M12 2v4"></path><path d="m16.2 7.8 2.9-2.9"></path><path d="M18 12h4"></path><path d="m16.2 16.2 2.9 2.9"></path><path d="M12 18v4"></path><path d="m4.9 19.1 2.9-2.9"></path><path d="M2 12h4"></path><path d="m4.9 4.9 2.9 2.9"></path></svg>Loading routes...</div><div class="flex items-center gap-2"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevrons-up-down h-4 w-4 shrink-0 opacity-50" aria-hidden="true"><path d="m7 15 5 5 5-5"></path><path d="m7 9 5-5 5 5"></path></svg></div></button></div></div><div class="flex items-center gap-2"></div></div><div class="flex-1 flex min-h-0"><div class="flex-1 min-w-0 p-4 bg-background"><div class="h-full w-full grid grid-cols-12 grid-rows-8 gap-2"><div class="animate-pulse rounded-md bg-muted col-span-5 row-span-4"></div><div class="animate-pulse rounded-md bg-muted col-span-4 row-span-3"></div><div class="animate-pulse rounded-md bg-muted col-span-3 row-span-3"></div><div class="animate-pulse rounded-md bg-muted col-span-4 row-span-1"></div><div class="animate-pulse rounded-md bg-muted col-span-3 row-span-2"></div><div class="animate-pulse rounded-md bg-muted col-span-3 row-span-4"></div><div class="animate-pulse rounded-md bg-muted col-span-2 row-span-2"></div><div class="animate-pulse rounded-md bg-muted col-span-2 row-span-2"></div><div class="animate-pulse rounded-md bg-muted col-span-3 row-span-2"></div><div class="animate-pulse rounded-md bg-muted col-span-4 row-span-2"></div><div class="animate-pulse rounded-md bg-muted col-span-2 row-span-2"></div><div class="animate-pulse rounded-md bg-muted col-span-3 row-span-2"></div></div></div><button type="button" class="flex-none w-1 bg-border cursor-col-resize transition-colors" disabled="" aria-label="Resize sidebar"></button><div class="flex-none bg-muted border-l border-border overflow-y-auto" style="width:20%"><div class="flex-1 p-3 space-y-4 overflow-y-auto"><div class="animate-pulse rounded-md bg-muted h-4 w-3/4"></div><div class="animate-pulse rounded-md bg-muted h-4 w-full"></div><div class="animate-pulse rounded-md bg-muted h-4 w-5/6"></div><div class="mt-4 space-y-2"><div class="animate-pulse rounded-md bg-muted h-3 w-full"></div><div class="animate-pulse rounded-md bg-muted h-3 w-full"></div><div class="animate-pulse rounded-md bg-muted h-3 w-4/5"></div></div></div></div></div></main><!--$--><!--/$--><script src="/_next/static/chunks/3435cab23cc60e29.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[34876,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n3:I[92998,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n4:I[64288,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"ClientPageRoot\"]\n5:I[79331,[\"/_next/static/chunks/e6022e40e11f5859.js\"],\"default\"]\n8:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"OutletBoundary\"]\n9:\"$Sreact.suspense\"\nb:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"ViewportBoundary\"]\nd:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"MetadataBoundary\"]\nf:I[41704,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n:HL[\"/_next/static/chunks/adecd0ef71a11c8f.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"
|
|
10
|
+
</script><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="font-sans antialiased"><div hidden=""><!--$--><!--/$--></div><main class="h-screen flex flex-col bg-background"><div class="flex-none px-4 py-2 border-b border-border flex items-center gap-3"><div class="flex-1 flex"><div class="flex items-center gap-2 min-w-64 max-w-full"><button class="inline-flex items-center gap-2 whitespace-nowrap rounded-md font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0 border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground h-9 px-4 py-2 flex-grow-1 w-full justify-between font-mono text-sm" role="combobox" aria-expanded="false" disabled="" type="button" aria-haspopup="dialog" aria-controls="radix-_R_lbtb_" data-state="closed"><div class="flex items-center"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-loader mr-2 inline animate-spin" aria-hidden="true"><path d="M12 2v4"></path><path d="m16.2 7.8 2.9-2.9"></path><path d="M18 12h4"></path><path d="m16.2 16.2 2.9 2.9"></path><path d="M12 18v4"></path><path d="m4.9 19.1 2.9-2.9"></path><path d="M2 12h4"></path><path d="m4.9 4.9 2.9 2.9"></path></svg>Loading routes...</div><div class="flex items-center gap-2"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevrons-up-down h-4 w-4 shrink-0 opacity-50" aria-hidden="true"><path d="m7 15 5 5 5-5"></path><path d="m7 9 5-5 5 5"></path></svg></div></button></div></div><div class="flex items-center gap-2"></div></div><div class="flex-1 flex min-h-0"><div class="flex-1 min-w-0 p-4 bg-background"><div class="h-full w-full grid grid-cols-12 grid-rows-8 gap-2"><div class="animate-pulse rounded-md bg-muted col-span-5 row-span-4"></div><div class="animate-pulse rounded-md bg-muted col-span-4 row-span-3"></div><div class="animate-pulse rounded-md bg-muted col-span-3 row-span-3"></div><div class="animate-pulse rounded-md bg-muted col-span-4 row-span-1"></div><div class="animate-pulse rounded-md bg-muted col-span-3 row-span-2"></div><div class="animate-pulse rounded-md bg-muted col-span-3 row-span-4"></div><div class="animate-pulse rounded-md bg-muted col-span-2 row-span-2"></div><div class="animate-pulse rounded-md bg-muted col-span-2 row-span-2"></div><div class="animate-pulse rounded-md bg-muted col-span-3 row-span-2"></div><div class="animate-pulse rounded-md bg-muted col-span-4 row-span-2"></div><div class="animate-pulse rounded-md bg-muted col-span-2 row-span-2"></div><div class="animate-pulse rounded-md bg-muted col-span-3 row-span-2"></div></div></div><button type="button" class="flex-none w-1 bg-border cursor-col-resize transition-colors" disabled="" aria-label="Resize sidebar"></button><div class="flex-none bg-muted border-l border-border overflow-y-auto" style="width:20%"><div class="flex-1 p-3 space-y-4 overflow-y-auto"><div class="animate-pulse rounded-md bg-muted h-4 w-3/4"></div><div class="animate-pulse rounded-md bg-muted h-4 w-full"></div><div class="animate-pulse rounded-md bg-muted h-4 w-5/6"></div><div class="mt-4 space-y-2"><div class="animate-pulse rounded-md bg-muted h-3 w-full"></div><div class="animate-pulse rounded-md bg-muted h-3 w-full"></div><div class="animate-pulse rounded-md bg-muted h-3 w-4/5"></div></div></div></div></div></main><!--$--><!--/$--><script src="/_next/static/chunks/3435cab23cc60e29.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[34876,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n3:I[92998,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n4:I[64288,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"ClientPageRoot\"]\n5:I[79331,[\"/_next/static/chunks/e6022e40e11f5859.js\"],\"default\"]\n8:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"OutletBoundary\"]\n9:\"$Sreact.suspense\"\nb:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"ViewportBoundary\"]\nd:I[26282,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"MetadataBoundary\"]\nf:I[41704,[\"/_next/static/chunks/fa01bd14d5942b77.js\"],\"default\"]\n:HL[\"/_next/static/chunks/adecd0ef71a11c8f.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"0oIhBbysU4HGiEvWfSsub\",\"c\":[\"\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/adecd0ef71a11c8f.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"suppressHydrationWarning\":true,\"children\":[[\"$\",\"head\",null,{\"children\":[\"$\",\"script\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"\\n (function() {\\n const theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';\\n document.documentElement.classList.toggle('dark', theme === 'dark');\\n\\n window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', (e) =\u003e {\\n document.documentElement.classList.toggle('dark', e.matches);\\n });\\n })();\\n \"}}]}],[\"$\",\"body\",null,{\"className\":\"font-sans antialiased\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L4\",null,{\"Component\":\"$5\",\"serverProvidedParams\":{\"searchParams\":{},\"params\":{},\"promises\":[\"$@6\",\"$@7\"]}}],[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/e6022e40e11f5859.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$L8\",null,{\"children\":[\"$\",\"$9\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@a\"}]}]]}],{},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$Lb\",null,{\"children\":\"$@c\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Ld\",null,{\"children\":[\"$\",\"$9\",null,{\"name\":\"Next.Metadata\",\"children\":\"$@e\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$f\",[]],\"S\":true}\n"])</script><script>self.__next_f.push([1,"6:{}\n7:\"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params\"\n"])</script><script>self.__next_f.push([1,"c:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"e:[[\"$\",\"title\",\"0\",{\"children\":\"Next.js Bundle Analyzer\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Visualize and analyze your Next.js bundle sizes with interactive treemap and dependency analysis\"}]]\na:null\n"])</script></body></html>
|
|
@@ -9,7 +9,7 @@ b:I[26282,["/_next/static/chunks/fa01bd14d5942b77.js"],"ViewportBoundary"]
|
|
|
9
9
|
d:I[26282,["/_next/static/chunks/fa01bd14d5942b77.js"],"MetadataBoundary"]
|
|
10
10
|
f:I[41704,["/_next/static/chunks/fa01bd14d5942b77.js"],"default"]
|
|
11
11
|
:HL["/_next/static/chunks/adecd0ef71a11c8f.css","style"]
|
|
12
|
-
0:{"P":null,"b":"
|
|
12
|
+
0:{"P":null,"b":"0oIhBbysU4HGiEvWfSsub","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/adecd0ef71a11c8f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"\n (function() {\n const theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';\n document.documentElement.classList.toggle('dark', theme === 'dark');\n\n window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', (e) => {\n document.documentElement.classList.toggle('dark', e.matches);\n });\n })();\n "}}]}],["$","body",null,{"className":"font-sans antialiased","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"Component":"$5","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@6","$@7"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/e6022e40e11f5859.js","async":true,"nonce":"$undefined"}]],["$","$L8",null,{"children":["$","$9",null,{"name":"Next.MetadataOutlet","children":"$@a"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Lb",null,{"children":"$@c"}],["$","div",null,{"hidden":true,"children":["$","$Ld",null,{"children":["$","$9",null,{"name":"Next.Metadata","children":"$@e"}]}]}],null]}],false]],"m":"$undefined","G":["$f",[]],"S":true}
|
|
13
13
|
6:{}
|
|
14
14
|
7:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params"
|
|
15
15
|
c:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
@@ -15,7 +15,7 @@ Object.defineProperty(exports, "appBootstrap", {
|
|
|
15
15
|
});
|
|
16
16
|
const _assetprefix = require("./asset-prefix");
|
|
17
17
|
const _setattributesfromprops = require("./set-attributes-from-props");
|
|
18
|
-
const version = "16.1.1-canary.
|
|
18
|
+
const version = "16.1.1-canary.33";
|
|
19
19
|
window.next = {
|
|
20
20
|
version,
|
|
21
21
|
appDir: true
|
package/dist/client/index.js
CHANGED
|
@@ -60,7 +60,7 @@ const _hooksclientcontextsharedruntime = require("../shared/lib/hooks-client-con
|
|
|
60
60
|
const _onrecoverableerror = require("./react-client-callbacks/on-recoverable-error");
|
|
61
61
|
const _tracer = /*#__PURE__*/ _interop_require_default._(require("./tracing/tracer"));
|
|
62
62
|
const _isnextroutererror = require("./components/is-next-router-error");
|
|
63
|
-
const version = "16.1.1-canary.
|
|
63
|
+
const version = "16.1.1-canary.33";
|
|
64
64
|
let router;
|
|
65
65
|
const emitter = (0, _mitt.default)();
|
|
66
66
|
const looseToArray = (input)=>[].slice.call(input);
|
|
@@ -10,7 +10,7 @@ You can debug event listener operations by running Next.js with \`NEXT_UNHANDLED
|
|
|
10
10
|
|
|
11
11
|
You can silence warnings related to this behavior by running Next.js with \`NEXT_UNHANDLED_REJECTION_FILTER=silent\` environment variable.
|
|
12
12
|
|
|
13
|
-
You can debug event listener operations by running Next.js with \`NEXT_UNHANDLED_REJECTION_FILTER=debug\` environment variable.`),eO(),p.call(process))}),process.listeners=eC(f,function(e){return"unhandledRejection"===e?(null==t||t("Retrieving all 'unhandledRejection' listeners."),[eT,...ex]):f.call(process,e)}),e_=!0}();let eS=require("next/dist/server/app-render/work-async-storage.external.js");var ej=r("../../node_modules/.pnpm/react@19.3.0-canary-bef88f7c-20260116/node_modules/react/index.js");new WeakMap;class eN extends Error{constructor(e,t){super(`Invariant: ${e.endsWith(".")?e:e+"."} This is a bug in Next.js.`,t),this.name="InvariantError"}}function eA(e,t,r,n){let i,s,a=n.dynamicTracking;(i=Object.defineProperty(Error(`Route ${e} needs to bail out of prerendering at this point because it used ${t}.`),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0})).digest="NEXT_PRERENDER_INTERRUPTED",n.controller.abort(i),(s=n.dynamicTracking)&&s.dynamicAccesses.push({stack:s.isDebugDynamicAccesses?Error().stack:void 0,expression:t}),a&&null===a.syncDynamicErrorWithStack&&(a.syncDynamicErrorWithStack=r)}if(ej.unstable_postpone,!1===("Route %%% needs to bail out of prerendering at this point because it used ^^^. React throws this special object to indicate where. It should not be caught by your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error".includes("needs to bail out of prerendering at this point because it used")&&"Route %%% needs to bail out of prerendering at this point because it used ^^^. React throws this special object to indicate where. It should not be caught by your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error".includes("Learn more: https://nextjs.org/docs/messages/ppr-caught-error")))throw Object.defineProperty(Error("Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js"),"__NEXT_ERROR_CODE",{value:"E296",enumerable:!1,configurable:!0});function eD(e,t){let r=B.workUnitAsyncStorage.getStore(),n=eS.workAsyncStorage.getStore();if(r&&n)switch(r.type){case"prerender":case"prerender-runtime":if(!1===r.controller.signal.aborted){let i;switch(t){case"time":i=`Route "${n.route}" used ${e} before accessing either uncached data (e.g. \`fetch()\`) or Request data (e.g. \`cookies()\`, \`headers()\`, \`connection()\`, and \`searchParams\`). Accessing the current time in a Server Component requires reading one of these data sources first. Alternatively, consider moving this expression into a Client Component or Cache Component. See more info here: https://nextjs.org/docs/messages/next-prerender-current-time`;break;case"random":i=`Route "${n.route}" used ${e} before accessing either uncached data (e.g. \`fetch()\`) or Request data (e.g. \`cookies()\`, \`headers()\`, \`connection()\`, and \`searchParams\`). Accessing random values synchronously in a Server Component requires reading one of these data sources first. Alternatively, consider moving this expression into a Client Component or Cache Component. See more info here: https://nextjs.org/docs/messages/next-prerender-random`;break;case"crypto":i=`Route "${n.route}" used ${e} before accessing either uncached data (e.g. \`fetch()\`) or Request data (e.g. \`cookies()\`, \`headers()\`, \`connection()\`, and \`searchParams\`). Accessing random cryptographic values synchronously in a Server Component requires reading one of these data sources first. Alternatively, consider moving this expression into a Client Component or Cache Component. See more info here: https://nextjs.org/docs/messages/next-prerender-crypto`;break;default:throw Object.defineProperty(new eN("Unknown expression type in abortOnSynchronousPlatformIOAccess."),"__NEXT_ERROR_CODE",{value:"E526",enumerable:!1,configurable:!0})}eA(n.route,e,Object.defineProperty(Error(i),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0}),r)}break;case"prerender-client":if(!1===r.controller.signal.aborted){let i;switch(t){case"time":i=`Route "${n.route}" used ${e} inside a Client Component without a Suspense boundary above it. See more info here: https://nextjs.org/docs/messages/next-prerender-current-time-client`;break;case"random":i=`Route "${n.route}" used ${e} inside a Client Component without a Suspense boundary above it. See more info here: https://nextjs.org/docs/messages/next-prerender-random-client`;break;case"crypto":i=`Route "${n.route}" used ${e} inside a Client Component without a Suspense boundary above it. See more info here: https://nextjs.org/docs/messages/next-prerender-crypto-client`;break;default:throw Object.defineProperty(new eN("Unknown expression type in abortOnSynchronousPlatformIOAccess."),"__NEXT_ERROR_CODE",{value:"E526",enumerable:!1,configurable:!0})}eA(n.route,e,Object.defineProperty(Error(i),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0}),r)}}}RegExp(`\\n\\s+at Suspense \\(<anonymous>\\)(?:(?!\\n\\s+at (?:body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6) \\(<anonymous>\\))[\\s\\S])*?\\n\\s+at __next_root_layout_boundary__ \\([^\\n]*\\)`),RegExp(`\\n\\s+at __next_metadata_boundary__[\\n\\s]`),RegExp(`\\n\\s+at __next_viewport_boundary__[\\n\\s]`),RegExp(`\\n\\s+at __next_outlet_boundary__[\\n\\s]`),require("next/dist/server/runtime-reacts.external.js");let e$="`Math.random()`";try{let e=Math.random;Math.random=(function(){return eD(e$,"random"),e.apply(null,arguments)}).bind(null),Object.defineProperty(Math.random,"name",{value:"random"})}catch{console.error(`Failed to install ${e$} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}try{let e,t,r,n;Date=(v=Date,(e=Object.getOwnPropertyDescriptors(v)).now.value=(b=v.now,({now:function(){return eD("`Date.now()`","time"),b()}})["now".slice()].bind(null)),t=Reflect.apply,r=Reflect.construct,n=Object.defineProperties(function(){return new.target===void 0?(eD("`Date()`","time"),t(v,void 0,arguments)):(0==arguments.length&&eD("`new Date()`","time"),r(v,arguments,new.target))},e),Object.defineProperty(v.prototype,"constructor",{value:n}),n)}catch{console.error("Failed to install `Date` class extension. When using `cacheComponents`, APIs that read the current time will not correctly trigger dynamic behavior.")}m="undefined"==typeof crypto?r("node:crypto").webcrypto:crypto;let ek="`crypto.getRandomValues()`";try{let e=m.getRandomValues;m.getRandomValues=function(){return eD(ek,"crypto"),e.apply(m,arguments)}}catch{console.error(`Failed to install ${ek} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}try{let e=m.randomUUID;m.randomUUID=function(){return eD("`crypto.randomUUID()`","crypto"),e.apply(m,arguments)}}catch{console.error(`Failed to install ${ek} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}{let e=r("node:crypto"),t="`require('node:crypto').randomUUID()`";try{let r=e.randomUUID;e.randomUUID=function(){return eD(t,"random"),r.apply(this,arguments)}}catch{console.error(`Failed to install ${t} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}let n="`require('node:crypto').randomBytes(size)`";try{let t=e.randomBytes;e.randomBytes=function(){return"function"!=typeof arguments[1]&&eD(n,"random"),t.apply(this,arguments)}}catch{console.error(`Failed to install ${n} extension. When using \`cacheComponents\` calling this function without a callback argument will not correctly trigger dynamic behavior.`)}let i="`require('node:crypto').randomFillSync(...)`";try{let t=e.randomFillSync;e.randomFillSync=function(){return eD(i,"random"),t.apply(this,arguments)}}catch{console.error(`Failed to install ${i} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}try{let t=e.randomInt;e.randomInt=function(){return"function"!=typeof arguments[2]&&eD("`require('node:crypto').randomInt(min, max)`","random"),t.apply(this,arguments)}}catch{console.error(`Failed to install ${n} extension. When using \`cacheComponents\` calling this function without a callback argument will not correctly trigger dynamic behavior.`)}let s="`require('node:crypto').generatePrimeSync(...)`";try{let t=e.generatePrimeSync;e.generatePrimeSync=function(){return eD(s,"random"),t.apply(this,arguments)}}catch{console.error(`Failed to install ${s} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}let a="`require('node:crypto').generateKeyPairSync(...)`";try{let t=e.generateKeyPairSync;e.generateKeyPairSync=function(){return eD(a,"random"),t.apply(this,arguments)}}catch{console.error(`Failed to install ${a} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}let o="`require('node:crypto').generateKeySync(...)`";try{let t=e.generateKeySync;e.generateKeySync=function(){return eD(o,"random"),t.apply(this,arguments)}}catch{console.error(`Failed to install ${o} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}}require("next/dist/server/node-environment-extensions/fast-set-immediate.external.js");let eI=r("path"),eM=r("module"),eL=eM.prototype.require,eq=eM._resolveFilename,eH=require.resolve,eF=new Map;!function(e=[]){for(let[t,r]of e)eF.set(t,r)}(Object.entries({"styled-jsx":eI.dirname(eH("styled-jsx/package.json")),"styled-jsx/style":eH("styled-jsx/style"),"styled-jsx/style.js":eH("styled-jsx/style")}).map(([e,t])=>[e,eH(t)])),eM._resolveFilename=(function(e,t,r,n,i,s){let a=t.get(r);return a&&(r=a),e.call(eM,r,n,i,s)}).bind(null,eq,eF),eM.prototype.require=function(e){return e.endsWith(".shared-runtime")?eL.call(this,`next/dist/server/route-modules/pages/vendored/contexts/${eI.basename(e,".shared-runtime")}`):eL.call(this,e)},r("./dist/esm/server/node-polyfill-crypto.js"),"undefined"!=typeof performance&&["mark","measure","getEntriesByName"].every(e=>"function"==typeof performance[e]);class ez extends Error{}class eU extends Error{}class eX extends Error{constructor(e){super(),this.code="ENOENT",this.name="PageNotFoundError",this.message=`Cannot find module for page: ${e}`}}class eW extends Error{constructor(e,t){super(),this.message=`Failed to load static file for page: ${e} ${t}`}}var eB=r("./dist/compiled/path-to-regexp/index.js");let eG="_NEXTSEP_";function eV(e){return"string"==typeof e&&!!(/\/\(\.{1,3}\):[^/\s]+/.test(e)||/:[a-zA-Z_][a-zA-Z0-9_]*:[a-zA-Z_][a-zA-Z0-9_]*/.test(e))}function eK(e){let t=e;return(t=t.replace(/(\([^)]*\)):([^/\s]+)/g,`$1${eG}:$2`)).replace(/:([^:/\s)]+)(?=:)/g,`:$1${eG}`)}function eY(e){return e.replace(RegExp(`\\)${eG}`,"g"),")")}function eJ(e,t,r){if("string"!=typeof e)return(0,eB.pathToRegexp)(e,t,r);let n=eV(e),i=n?eK(e):e;try{return(0,eB.pathToRegexp)(i,t,r)}catch(i){if(!n)try{let n=eK(e);return(0,eB.pathToRegexp)(n,t,r)}catch(e){}throw i}}function eQ(e,t){let r=eV(e),n=r?eK(e):e;try{let e=(0,eB.compile)(n,t);if(r)return t=>eY(e(t));return e}catch(n){if(!r)try{let r=eK(e),n=(0,eB.compile)(r,t);return e=>eY(n(e))}catch(e){}throw n}}function eZ({re:e,groups:t}){var r;return r=r=>{let n=e.exec(r);if(!n)return!1;let i=e=>{try{return decodeURIComponent(e)}catch{throw Object.defineProperty(new ez("failed to decode param"),"__NEXT_ERROR_CODE",{value:"E528",enumerable:!1,configurable:!0})}},s={};for(let[e,r]of Object.entries(t)){let t=n[r.pos];void 0!==t&&(r.repeat?s[e]=t.split("/").map(e=>i(e)):s[e]=i(t))}return s},e=>{let t=r(e);if(!t)return!1;let n={};for(let[e,r]of Object.entries(t))"string"==typeof r?n[e]=r.replace(RegExp(`^${eG}`),""):Array.isArray(r)?n[e]=r.map(e=>"string"==typeof e?e.replace(RegExp(`^${eG}`),""):e):n[e]=r;return n}}let e0=Symbol.for("NextInternalRequestMeta");function e1(e,t){let r=e[e0]||{};return"string"==typeof t?r[t]:r}function e4(e,t,r){let n=e1(e);return n[t]=r,e[e0]=n,n}function e2(e,t){let r=e1(e);return delete r[t],e[e0]=r,r}r("./dist/esm/shared/lib/modern-browserslist-target.js");let e3="/_not-found",e8=`${e3}/page`,e9="pages-manifest.json",e6="app-paths-manifest.json",e5="server";[...process?.features?.typescript?["next.config.mts"]:[]];let e7=["/_document","/_app","/_error"];Symbol("polyfills");let te=["/500"];function tt(e,t){let r=A().join(e,t);return ed().existsSync(r)||(r=A().join(e,"src",t),ed().existsSync(r))?r:null}class tr{static get(e,t,r){let n=Reflect.get(e,t,r);return"function"==typeof n?n.bind(e):n}static set(e,t,r,n){return Reflect.set(e,t,r,n)}static has(e,t){return Reflect.has(e,t)}static deleteProperty(e,t){return Reflect.deleteProperty(e,t)}}class tn extends Error{constructor(){super("Headers cannot be modified. Read more: https://nextjs.org/docs/app/api-reference/functions/headers")}static callable(){throw new tn}}class ti extends Headers{constructor(e){super(),this.headers=new Proxy(e,{get(t,r,n){if("symbol"==typeof r)return tr.get(t,r,n);let i=r.toLowerCase(),s=Object.keys(e).find(e=>e.toLowerCase()===i);if(void 0!==s)return tr.get(t,s,n)},set(t,r,n,i){if("symbol"==typeof r)return tr.set(t,r,n,i);let s=r.toLowerCase(),a=Object.keys(e).find(e=>e.toLowerCase()===s);return tr.set(t,a??r,n,i)},has(t,r){if("symbol"==typeof r)return tr.has(t,r);let n=r.toLowerCase(),i=Object.keys(e).find(e=>e.toLowerCase()===n);return void 0!==i&&tr.has(t,i)},deleteProperty(t,r){if("symbol"==typeof r)return tr.deleteProperty(t,r);let n=r.toLowerCase(),i=Object.keys(e).find(e=>e.toLowerCase()===n);return void 0===i||tr.deleteProperty(t,i)}})}static seal(e){return new Proxy(e,{get(e,t,r){switch(t){case"append":case"delete":case"set":return tn.callable;default:return tr.get(e,t,r)}}})}merge(e){return Array.isArray(e)?e.join(", "):e}static from(e){return e instanceof Headers?e:new ti(e)}append(e,t){let r=this.headers[e];"string"==typeof r?this.headers[e]=[r,t]:Array.isArray(r)?r.push(t):this.headers[e]=t}delete(e){delete this.headers[e]}get(e){let t=this.headers[e];return void 0!==t?this.merge(t):null}has(e){return void 0!==this.headers[e]}set(e,t){this.headers[e]=t}forEach(e,t){for(let[r,n]of this.entries())e.call(t,n,r,this)}*entries(){for(let e of Object.keys(this.headers)){let t=e.toLowerCase(),r=this.get(t);yield[t,r]}}*keys(){for(let e of Object.keys(this.headers)){let t=e.toLowerCase();yield t}}*values(){for(let e of Object.keys(this.headers)){let t=this.get(e);yield t}}[Symbol.iterator](){return this.entries()}}let ts="text/html; charset=utf-8",ta="nxtP",to="nxtI",tl="x-matched-path",tc=".segments",tu=".segment.rsc",td=".rsc",th=".json",tp=".meta",tf="x-next-cache-tags",tm="x-next-revalidated-tags",tg={shared:"shared",reactServerComponents:"rsc",serverSideRendering:"ssr",actionBrowser:"action-browser",apiNode:"api-node",apiEdge:"api-edge",middleware:"middleware",instrument:"instrument",edgeAsset:"edge-asset",appPagesBrowser:"app-pages-browser",pagesDirBrowser:"pages-dir-browser",pagesDirEdge:"pages-dir-edge",pagesDirNode:"pages-dir-node"};({...tg,GROUP:{builtinReact:[tg.reactServerComponents,tg.actionBrowser],serverOnly:[tg.reactServerComponents,tg.actionBrowser,tg.instrument,tg.middleware],neutralTarget:[tg.apiNode,tg.apiEdge],clientOnly:[tg.serverSideRendering,tg.appPagesBrowser],bundled:[tg.reactServerComponents,tg.actionBrowser,tg.serverSideRendering,tg.appPagesBrowser,tg.shared,tg.instrument,tg.middleware],appPages:[tg.reactServerComponents,tg.serverSideRendering,tg.appPagesBrowser,tg.actionBrowser]}});let ty=require("next/dist/server/lib/trace/tracer");var tv=((E=tv||{}).handleRequest="BaseServer.handleRequest",E.run="BaseServer.run",E.pipe="BaseServer.pipe",E.getStaticHTML="BaseServer.getStaticHTML",E.render="BaseServer.render",E.renderToResponseWithComponents="BaseServer.renderToResponseWithComponents",E.renderToResponse="BaseServer.renderToResponse",E.renderToHTML="BaseServer.renderToHTML",E.renderError="BaseServer.renderError",E.renderErrorToResponse="BaseServer.renderErrorToResponse",E.renderErrorToHTML="BaseServer.renderErrorToHTML",E.render404="BaseServer.render404",E),tb=((_=tb||{}).loadDefaultErrorComponents="LoadComponents.loadDefaultErrorComponents",_.loadComponents="LoadComponents.loadComponents",_),tE=((x=tE||{}).compression="NextNodeServer.compression",x.getBuildId="NextNodeServer.getBuildId",x.createComponentTree="NextNodeServer.createComponentTree",x.clientComponentLoading="NextNodeServer.clientComponentLoading",x.getLayoutOrPageModule="NextNodeServer.getLayoutOrPageModule",x.generateStaticRoutes="NextNodeServer.generateStaticRoutes",x.generateFsStaticRoutes="NextNodeServer.generateFsStaticRoutes",x.generatePublicRoutes="NextNodeServer.generatePublicRoutes",x.generateImageRoutes="NextNodeServer.generateImageRoutes.route",x.sendRenderResult="NextNodeServer.sendRenderResult",x.proxyRequest="NextNodeServer.proxyRequest",x.runApi="NextNodeServer.runApi",x.render="NextNodeServer.render",x.renderHTML="NextNodeServer.renderHTML",x.imageOptimizer="NextNodeServer.imageOptimizer",x.getPagePath="NextNodeServer.getPagePath",x.getRoutesManifest="NextNodeServer.getRoutesManifest",x.findPageComponents="NextNodeServer.findPageComponents",x.getFontManifest="NextNodeServer.getFontManifest",x.getServerComponentManifest="NextNodeServer.getServerComponentManifest",x.getRequestHandler="NextNodeServer.getRequestHandler",x.renderToHTML="NextNodeServer.renderToHTML",x.renderError="NextNodeServer.renderError",x.renderErrorToHTML="NextNodeServer.renderErrorToHTML",x.render404="NextNodeServer.render404",x.startResponse="NextNodeServer.startResponse",x.route="route",x.onProxyReq="onProxyReq",x.apiResolver="apiResolver",x.internalFetch="internalFetch",x);Symbol("__next_preview_data");let t_=Symbol("__prerender_bypass");var tx=((w={})[w.SeeOther=303]="SeeOther",w[w.TemporaryRedirect=307]="TemporaryRedirect",w[w.PermanentRedirect=308]="PermanentRedirect",w);function tw(e){return function(){let{cookie:t}=e;if(!t)return{};let{parse:n}=r("./dist/compiled/cookie/index.js");return n(Array.isArray(t)?t.join("; "):t)}}class tR{constructor(e,t,r){this.method=e,this.url=t,this.body=r}get cookies(){return this._cookies?this._cookies:this._cookies=tw(this.headers)()}}class tC{constructor(e){this.destination=e}redirect(e,t){return this.setHeader("Location",e),this.statusCode=t,t===tx.PermanentRedirect&&this.setHeader("Refresh",`0;url=${e}`),this}}class tP extends tR{static #e=T=e0;constructor(e){var t;super(e.method.toUpperCase(),e.url,e),this._req=e,this.headers=this._req.headers,this.fetchMetrics=null==(t=this._req)?void 0:t.fetchMetrics,this[T]=this._req[e0]||{},this.streaming=!1}get originalRequest(){return this._req[e0]=this[e0],this._req.url=this.url,this._req.cookies=this.cookies,this._req}set originalRequest(e){this._req=e}stream(){if(this.streaming)throw Object.defineProperty(Error("Invariant: NodeNextRequest.stream() can only be called once"),"__NEXT_ERROR_CODE",{value:"E467",enumerable:!1,configurable:!0});return this.streaming=!0,new ReadableStream({start:e=>{this._req.on("data",t=>{e.enqueue(new Uint8Array(t))}),this._req.on("end",()=>{e.close()}),this._req.on("error",t=>{e.error(t)})}})}}class tO extends tC{get originalResponse(){return t_ in this&&(this._res[t_]=this[t_]),this._res}constructor(e){super(e),this._res=e,this.textBody=void 0}get sent(){return this._res.finished||this._res.headersSent}get statusCode(){return this._res.statusCode}set statusCode(e){this._res.statusCode=e}get statusMessage(){return this._res.statusMessage}set statusMessage(e){this._res.statusMessage=e}setHeader(e,t){return this._res.setHeader(e,t),this}removeHeader(e){return this._res.removeHeader(e),this}getHeaderValues(e){let t=this._res.getHeader(e);if(void 0!==t)return(Array.isArray(t)?t:[t]).map(e=>e.toString())}hasHeader(e){return this._res.hasHeader(e)}getHeader(e){let t=this.getHeaderValues(e);return Array.isArray(t)?t.join(","):void 0}getHeaders(){return this._res.getHeaders()}appendHeader(e,t){let r=this.getHeaderValues(e)??[];return r.includes(t)||this._res.setHeader(e,[...r,t]),this}body(e){return this.textBody=e,this}send(){this._res.end(this.textBody)}onClose(e){this.originalResponse.on("close",e)}}var tT=r("./dist/compiled/fresh/index.js"),tS=r.n(tT);async function tj({req:e,res:t,result:r,generateEtags:n,poweredByHeader:i,cacheControl:s}){if(t.finished||t.headersSent)return;i&&r.contentType===ts&&t.setHeader("X-Powered-By","Next.js"),s&&!t.getHeader("Cache-Control")&&t.setHeader("Cache-Control",function({revalidate:e,expire:t}){let r="number"==typeof e&&void 0!==t&&e<t?`, stale-while-revalidate=${t-e}`:"";return 0===e?"private, no-cache, no-store, max-age=0, must-revalidate":"number"==typeof e?`s-maxage=${e}${r}`:`s-maxage=31536000${r}`}(s));let a=r.isDynamic?null:r.toUnchunkedString();if(n&&null!==a){let r=((e,t=!1)=>(t?'W/"':'"')+(e=>{let t=e.length,r=0,n=0,i=8997,s=0,a=33826,o=0,l=40164,c=0,u=52210;for(;r<t;)i^=e.charCodeAt(r++),n=435*i,s=435*a,o=435*l,c=435*u,o+=i<<8,c+=a<<8,s+=n>>>16,i=65535&n,o+=s>>>16,a=65535&s,u=c+(o>>>16)&65535,l=65535&o;return(15&u)*0x1000000000000+0x100000000*l+65536*a+(i^u>>4)})(e).toString(36)+e.length.toString(36)+'"')(a);if(r&&t.setHeader("ETag",r),tS()(e.headers,{etag:r})&&(t.statusCode=304,t.end(),1))return}(!t.getHeader("Content-Type")&&r.contentType&&t.setHeader("Content-Type",r.contentType),a&&t.setHeader("Content-Length",Buffer.byteLength(a)),"HEAD"===e.method)?t.end(null):null!==a?t.end(a):await r.pipeToNodeResponse(t)}function tN(e){let t={};for(let[r,n]of e.entries()){let e=t[r];void 0===e?t[r]=n:Array.isArray(e)?e.push(n):t[r]=[e,n]}return t}function tA(e){return"string"==typeof e?e:("number"!=typeof e||isNaN(e))&&"boolean"!=typeof e?"":String(e)}function tD(e){if(e.startsWith("/"))return function(e,t,r=!0){let n=new URL("http://n"),i=e.startsWith(".")?new URL("http://n"):n,{pathname:s,searchParams:a,search:o,hash:l,href:c,origin:u}=e.startsWith("/")?new URL(`${i.protocol}//${i.host}${e}`):new URL(e,i);if(u!==n.origin)throw Object.defineProperty(Error(`invariant: invalid relative URL, router received ${e}`),"__NEXT_ERROR_CODE",{value:"E159",enumerable:!1,configurable:!0});return{auth:null,host:null,hostname:null,pathname:s,port:null,protocol:null,query:r?tN(a):void 0,search:o,hash:l,href:c.slice(u.length),slashes:null}}(e);let t=new URL(e),r=t.username,n=t.password,i=r?n?`${r}:${n}`:r:null,s=t.pathname,a=t.search;return{auth:i,hash:t.hash,hostname:t.hostname,href:t.href,pathname:s,port:t.port,protocol:t.protocol,query:tN(t.searchParams),search:a,origin:t.origin,slashes:"//"===t.href.slice(t.protocol.length,t.protocol.length+2)}}let t$={wait:es(Q("○")),error:et(Q("⨯")),warn:en(Q("⚠")),ready:"▲",info:es(Q(" ")),event:er(Q("✓")),trace:ei(Q("\xbb"))},tk={log:"log",warn:"warn",error:"error"};function tI(e,...t){(""===t[0]||void 0===t[0])&&1===t.length&&t.shift();let r=e in tk?tk[e]:"log",n=t$[e];0===t.length?console[r](""):1===t.length&&"string"==typeof t[0]?console[r](n+" "+t[0]):console[r](n,...t)}function tM(e){console.log(e)}function tL(...e){tI("wait",...e)}function tq(...e){tI("error",...e)}function tH(...e){tI("warn",...e)}function tF(...e){tI("ready",...e)}function tz(...e){tI("info",...e)}function tU(...e){tI("event",...e)}function tX(...e){tI("trace",...e)}let tW=new M(1e4,e=>e.length);function tB(...e){let t=e.join(" ");tW.has(t)||(tW.set(t,t),tH(...e))}let tG=new M(1e4,e=>e.length);function tV(...e){let t=e.join(" ");tG.has(t)||(tG.set(t,t),tq(...e))}var tK=r("os"),tY=r.n(tK);let tJ="100 MB";function tQ(e){let t=r("./dist/compiled/bytes/index.js").parse(e??tJ);return null===t||isNaN(t)||t<1?void 0:t}Object.freeze({env:{},webpack:null,typescript:{ignoreBuildErrors:!1,tsconfigPath:void 0},typedRoutes:!1,distDir:".next",cleanDistDir:!0,assetPrefix:"",cacheHandler:process.env.NEXT_CACHE_HANDLER_PATH,cacheMaxMemorySize:0x3200000,configOrigin:"default",useFileSystemPublicRoutes:!0,generateBuildId:()=>null,generateEtags:!0,pageExtensions:["tsx","ts","jsx","js"],poweredByHeader:!0,compress:!0,images:{deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],path:"/_next/image",loader:"default",loaderFile:"",domains:[],disableStaticImages:!1,minimumCacheTTL:14400,formats:["image/webp"],maximumRedirects:3,maximumResponseBody:5e7,dangerouslyAllowLocalIP:!1,dangerouslyAllowSVG:!1,contentSecurityPolicy:"script-src 'none'; frame-src 'none'; sandbox;",contentDispositionType:"attachment",localPatterns:void 0,remotePatterns:[],qualities:[75],unoptimized:!1,customCacheHandler:!1},devIndicators:{position:"bottom-left"},onDemandEntries:{maxInactiveAge:6e4,pagesBufferLength:5},basePath:"",sassOptions:{},trailingSlash:!1,i18n:null,productionBrowserSourceMaps:!1,excludeDefaultMomentLocales:!0,reactProductionProfiling:!1,reactStrictMode:null,reactMaxHeadersLength:6e3,httpAgentOptions:{keepAlive:!0},logging:{},compiler:{},expireTime:process.env.NEXT_PRIVATE_CDN_CONSUMED_SWR_CACHE_CONTROL?void 0:31536e3,staticPageGenerationTimeout:60,output:process.env.NEXT_PRIVATE_STANDALONE?"standalone":void 0,modularizeImports:void 0,outputFileTracingRoot:process.env.NEXT_PRIVATE_OUTPUT_TRACE_ROOT||"",allowedDevOrigins:void 0,enablePrerenderSourceMaps:void 0,cacheComponents:!1,cacheLife:{default:{stale:void 0,revalidate:900,expire:0xfffffffe},seconds:{stale:30,revalidate:1,expire:60},minutes:{stale:300,revalidate:60,expire:3600},hours:{stale:300,revalidate:3600,expire:86400},days:{stale:300,revalidate:86400,expire:604800},weeks:{stale:300,revalidate:604800,expire:2592e3},max:{stale:300,revalidate:2592e3,expire:31536e3}},cacheHandlers:{default:process.env.NEXT_DEFAULT_CACHE_HANDLER_PATH,remote:process.env.NEXT_REMOTE_CACHE_HANDLER_PATH,static:process.env.NEXT_STATIC_CACHE_HANDLER_PATH},experimental:{adapterPath:process.env.NEXT_ADAPTER_PATH||void 0,useSkewCookie:!1,cssChunking:!0,multiZoneDraftMode:!1,appNavFailHandling:!1,prerenderEarlyExit:!0,serverMinification:!0,linkNoTouchStart:!1,caseSensitiveRoutes:!1,clientParamParsingOrigins:void 0,dynamicOnHover:!1,preloadEntriesOnStart:!0,clientRouterFilter:!0,clientRouterFilterRedirects:!1,fetchCacheKeyPrefix:"",proxyPrefetch:"flexible",optimisticClientCache:!0,manualClientBasePath:!1,cpus:Math.max(1,(Number(process.env.CIRCLE_NODE_TOTAL)||(tY().cpus()||{length:1}).length)-1),memoryBasedWorkersCount:!1,imgOptConcurrency:null,imgOptTimeoutInSeconds:7,imgOptMaxInputPixels:0xfff8001,imgOptSequentialRead:null,imgOptSkipMetadata:null,isrFlushToDisk:!0,workerThreads:!1,proxyTimeout:void 0,optimizeCss:!1,nextScriptWorkers:!1,scrollRestoration:!1,externalDir:!1,disableOptimizedLoading:!1,gzipSize:!0,craCompat:!1,esmExternals:!0,fullySpecified:!1,swcTraceProfiling:!1,forceSwcTransforms:!1,swcPlugins:void 0,largePageDataBytes:128e3,disablePostcssPresetEnv:void 0,urlImports:void 0,typedEnv:!1,clientTraceMetadata:void 0,parallelServerCompiles:!1,parallelServerBuildTraces:!1,ppr:!1,authInterrupts:!1,webpackBuildWorker:void 0,webpackMemoryOptimizations:!1,optimizeServerReact:!0,strictRouteTypes:!1,viewTransition:!1,removeUncaughtErrorAndRejectionListeners:!1,validateRSCRequestHeaders:!!(process.env.__NEXT_TEST_MODE||!(!"16.1.1-canary.32".includes("canary")&&!process.env.__NEXT_TEST_MODE&&!process.env.NEXT_PRIVATE_LOCAL_DEV)),staleTimes:{dynamic:0,static:300},allowDevelopmentBuild:void 0,reactDebugChannel:!1,staticGenerationRetryCount:void 0,serverComponentsHmrCache:!0,staticGenerationMaxConcurrency:8,staticGenerationMinPagesPerWorker:25,transitionIndicator:!1,inlineCss:!1,useCache:void 0,slowModuleDetection:void 0,globalNotFound:!1,browserDebugInfoInTerminal:"warn",lockDistDir:!0,isolatedDevBuild:!0,proxyClientMaxBodySize:0xa00000,hideLogsAfterAbort:!1,mcpServer:!0,turbopackFileSystemCacheForDev:!0,turbopackFileSystemCacheForBuild:!1,turbopackInferModuleSideEffects:!0,devCacheControlNoCache:!1},htmlLimitedBots:void 0,bundlePagesRouterDependencies:!1});let tZ="(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])",t0=`(${tZ}[.]){3}${tZ}`,t1="(?:[0-9a-fA-F]{1,4})",t4=RegExp(`^((?:${t1}:){7}(?:${t1}|:)|(?:${t1}:){6}(?:${t0}|:${t1}|:)|(?:${t1}:){5}(?::${t0}|(:${t1}){1,2}|:)|(?:${t1}:){4}(?:(:${t1}){0,1}:${t0}|(:${t1}){1,3}|:)|(?:${t1}:){3}(?:(:${t1}){0,2}:${t0}|(:${t1}){1,4}|:)|(?:${t1}:){2}(?:(:${t1}){0,3}:${t0}|(:${t1}){1,5}|:)|(?:${t1}:){1}(?:(:${t1}){0,4}:${t0}|(:${t1}){1,6}|:)|(?::((?::${t1}){0,5}:${t0}|(?::${t1}){1,7}|:)))(%[0-9a-zA-Z-.:]{1,})?$`);function t2(e){return e.startsWith("/")?e:`/${e}`}function t3(e){return t2(e.split("/").reduce((e,t,r,n)=>t?"("===t[0]&&t.endsWith(")")||"@"===t[0]||("page"===t||"route"===t)&&r===n.length-1?e:`${e}/${t}`:e,""))}function t8(e){return e.replace(/\.rsc($|\?)/,"$1")}let t9=["(..)(..)","(.)","(..)","(...)"];function t6(e){return void 0!==e.split("/").find(e=>t9.find(t=>e.startsWith(t)))}let t5=/\/[^/]*\[[^/]+\][^/]*(?=\/|$)/,t7=/\/\[[^/]+\](?=\/|$)/;function re(e,t=!0){return(t6(e)&&(e=function(e){let t,r,n;for(let i of e.split("/"))if(r=t9.find(e=>i.startsWith(e))){[t,n]=e.split(r,2);break}if(!t||!r||!n)throw Object.defineProperty(Error(`Invalid interception route: ${e}. Must be in the format /<intercepting route>/(..|...|..)(..)/<intercepted route>`),"__NEXT_ERROR_CODE",{value:"E269",enumerable:!1,configurable:!0});switch(t=t3(t),r){case"(.)":n="/"===t?`/${n}`:t+"/"+n;break;case"(..)":if("/"===t)throw Object.defineProperty(Error(`Invalid interception route: ${e}. Cannot use (..) marker at the root level, use (.) instead.`),"__NEXT_ERROR_CODE",{value:"E207",enumerable:!1,configurable:!0});n=t.split("/").slice(0,-1).concat(n).join("/");break;case"(...)":n="/"+n;break;case"(..)(..)":let i=t.split("/");if(i.length<=2)throw Object.defineProperty(Error(`Invalid interception route: ${e}. Cannot use (..)(..) marker at the root level or one level up.`),"__NEXT_ERROR_CODE",{value:"E486",enumerable:!1,configurable:!0});n=i.slice(0,-2).concat(n).join("/");break;default:throw Object.defineProperty(Error("Invariant: unexpected marker"),"__NEXT_ERROR_CODE",{value:"E112",enumerable:!1,configurable:!0})}return{interceptingRoute:t,interceptedRoute:n}}(e).interceptedRoute),t)?t7.test(e):t5.test(e)}let rt=/[\w-]+-Google|Google-[\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i,rr=/Googlebot(?!-)|Googlebot$/i,rn=rt.source;function ri(){}new Uint8Array([60,104,116,109,108]),new Uint8Array([60,98,111,100,121]),new Uint8Array([60,47,104,101,97,100,62]),new Uint8Array([60,47,98,111,100,121,62]),new Uint8Array([60,47,104,116,109,108,62]),new Uint8Array([60,47,98,111,100,121,62,60,47,104,116,109,108,62]),new Uint8Array([60,109,101,116,97,32,110,97,109,101,61,34,194,171,110,120,116,45,105,99,111,110,194,187,34]);let rs=new TextEncoder;function ra(e){return new ReadableStream({start(t){t.enqueue(rs.encode(e)),t.close()}})}function ro(e){return new ReadableStream({start(t){t.enqueue(e),t.close()}})}async function rl(e,t){let r=new TextDecoder("utf-8",{fatal:!0}),n="";for await(let i of e){if(null==t?void 0:t.aborted)return n;n+=r.decode(i,{stream:!0})}return n+r.decode()}function rc(e){var t,r,n,i,s,a=[],o=0;function l(){for(;o<e.length&&/\s/.test(e.charAt(o));)o+=1;return o<e.length}for(;o<e.length;){for(t=o,s=!1;l();)if(","===(r=e.charAt(o))){for(n=o,o+=1,l(),i=o;o<e.length&&"="!==(r=e.charAt(o))&&";"!==r&&","!==r;)o+=1;o<e.length&&"="===e.charAt(o)?(s=!0,o=i,a.push(e.substring(t,n)),t=o):o=n+1}else o+=1;(!s||o>=e.length)&&a.push(e.substring(t,e.length))}return a}function ru(e){let t={},r=[];if(e)for(let[n,i]of e.entries())"set-cookie"===n.toLowerCase()?(r.push(...rc(i)),t[n]=1===r.length?r[0]:r):t[n]=i;return t}function rd(e){try{return String(new URL(String(e)))}catch(t){throw Object.defineProperty(Error(`URL is malformed "${String(e)}". Please use only absolute URLs - https://nextjs.org/docs/messages/middleware-relative-urls`,{cause:t}),"__NEXT_ERROR_CODE",{value:"E61",enumerable:!1,configurable:!0})}}function rh(e){for(let t of[ta,to])if(e!==t&&e.startsWith(t))return e.substring(t.length);return null}function rp(e){return e.replace(/\/$/,"")||"/"}function rf(e){let t=e.indexOf("#"),r=e.indexOf("?"),n=r>-1&&(t<0||r<t);return n||t>-1?{pathname:e.substring(0,n?r:t),query:n?e.substring(r,t>-1?t:void 0):"",hash:t>-1?e.slice(t):""}:{pathname:e,query:"",hash:""}}function rm(e,t){if(!e.startsWith("/")||!t)return e;let{pathname:r,query:n,hash:i}=rf(e);return`${t}${r}${n}${i}`}function rg(e,t){if(!e.startsWith("/")||!t)return e;let{pathname:r,query:n,hash:i}=rf(e);return`${r}${t}${n}${i}`}function ry(e,t){if("string"!=typeof e)return!1;let{pathname:r}=rf(e);return r===t||r.startsWith(t+"/")}function rv(e,t){let r;if(t?.host&&!Array.isArray(t.host))r=t.host.toString().split(":",1)[0];else{if(!e.hostname)return;r=e.hostname}return r.toLowerCase()}let rb=new WeakMap;function rE(e,t){let r;if(!t)return{pathname:e};let n=rb.get(t);n||(n=t.map(e=>e.toLowerCase()),rb.set(t,n));let i=e.split("/",2);if(!i[1])return{pathname:e};let s=i[1].toLowerCase(),a=n.indexOf(s);return a<0?{pathname:e}:(r=t[a],{pathname:e=e.slice(r.length+1)||"/",detectedLocale:r})}function r_(e,t){if(!ry(e,t))return e;let r=e.slice(t.length);return r.startsWith("/")?r:`/${r}`}function rx(e,t){let{basePath:r,i18n:n,trailingSlash:i}=t.nextConfig??{},s={pathname:e,trailingSlash:"/"!==e?e.endsWith("/"):i};r&&ry(s.pathname,r)&&(s.pathname=r_(s.pathname,r),s.basePath=r);let a=s.pathname;if(s.pathname.startsWith("/_next/data/")&&s.pathname.endsWith(".json")){let e=s.pathname.replace(/^\/_next\/data\//,"").replace(/\.json$/,"").split("/");s.buildId=e[0],a="index"!==e[1]?`/${e.slice(1).join("/")}`:"/",!0===t.parseData&&(s.pathname=a)}if(n){let e=t.i18nProvider?t.i18nProvider.analyze(s.pathname):rE(s.pathname,n.locales);s.locale=e.detectedLocale,s.pathname=e.pathname??s.pathname,!e.detectedLocale&&s.buildId&&(e=t.i18nProvider?t.i18nProvider.analyze(a):rE(a,n.locales)).detectedLocale&&(s.locale=e.detectedLocale)}return s}let rw=/(?!^https?:\/\/)(127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}|\[::1\]|localhost)/;function rR(e,t){return new URL(String(e).replace(rw,"localhost"),t&&String(t).replace(rw,"localhost"))}let rC=Symbol("NextURLInternal");class rP{constructor(e,t,r){let n,i;"object"==typeof t&&"pathname"in t||"string"==typeof t?(n=t,i=r||{}):i=r||t||{},this[rC]={url:rR(e,n??i.base),options:i,basePath:""},this.analyze()}analyze(){var e,t,r,n,i;let s=rx(this[rC].url.pathname,{nextConfig:this[rC].options.nextConfig,parseData:!process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE,i18nProvider:this[rC].options.i18nProvider}),a=rv(this[rC].url,this[rC].options.headers);this[rC].domainLocale=this[rC].options.i18nProvider?this[rC].options.i18nProvider.detectDomainLocale(a):function(e,t,r){if(e){for(let n of(r&&(r=r.toLowerCase()),e))if(t===n.domain?.split(":",1)[0].toLowerCase()||r===n.defaultLocale.toLowerCase()||n.locales?.some(e=>e.toLowerCase()===r))return n}}(null==(t=this[rC].options.nextConfig)||null==(e=t.i18n)?void 0:e.domains,a);let o=(null==(r=this[rC].domainLocale)?void 0:r.defaultLocale)||(null==(i=this[rC].options.nextConfig)||null==(n=i.i18n)?void 0:n.defaultLocale);this[rC].url.pathname=s.pathname,this[rC].defaultLocale=o,this[rC].basePath=s.basePath??"",this[rC].buildId=s.buildId,this[rC].locale=s.locale??o,this[rC].trailingSlash=s.trailingSlash}formatPathname(){var e;let t;return t=function(e,t,r,n){if(!t||t===r)return e;let i=e.toLowerCase();return!n&&(ry(i,"/api")||ry(i,`/${t.toLowerCase()}`))?e:rm(e,`/${t}`)}((e={basePath:this[rC].basePath,buildId:this[rC].buildId,defaultLocale:this[rC].options.forceLocale?void 0:this[rC].defaultLocale,locale:this[rC].locale,pathname:this[rC].url.pathname,trailingSlash:this[rC].trailingSlash}).pathname,e.locale,e.buildId?void 0:e.defaultLocale,e.ignorePrefix),(e.buildId||!e.trailingSlash)&&(t=rp(t)),e.buildId&&(t=rg(rm(t,`/_next/data/${e.buildId}`),"/"===e.pathname?"index.json":".json")),t=rm(t,e.basePath),!e.buildId&&e.trailingSlash?t.endsWith("/")?t:rg(t,"/"):rp(t)}formatSearch(){return this[rC].url.search}get buildId(){return this[rC].buildId}set buildId(e){this[rC].buildId=e}get locale(){return this[rC].locale??""}set locale(e){var t,r;if(!this[rC].locale||!(null==(r=this[rC].options.nextConfig)||null==(t=r.i18n)?void 0:t.locales.includes(e)))throw Object.defineProperty(TypeError(`The NextURL configuration includes no locale "${e}"`),"__NEXT_ERROR_CODE",{value:"E597",enumerable:!1,configurable:!0});this[rC].locale=e}get defaultLocale(){return this[rC].defaultLocale}get domainLocale(){return this[rC].domainLocale}get searchParams(){return this[rC].url.searchParams}get host(){return this[rC].url.host}set host(e){this[rC].url.host=e}get hostname(){return this[rC].url.hostname}set hostname(e){this[rC].url.hostname=e}get port(){return this[rC].url.port}set port(e){this[rC].url.port=e}get protocol(){return this[rC].url.protocol}set protocol(e){this[rC].url.protocol=e}get href(){let e=this.formatPathname(),t=this.formatSearch();return`${this.protocol}//${this.host}${e}${t}${this.hash}`}set href(e){this[rC].url=rR(e),this.analyze()}get origin(){return this[rC].url.origin}get pathname(){return this[rC].url.pathname}set pathname(e){this[rC].url.pathname=e}get hash(){return this[rC].url.hash}set hash(e){this[rC].url.hash=e}get search(){return this[rC].url.search}set search(e){this[rC].url.search=e}get password(){return this[rC].url.password}set password(e){this[rC].url.password=e}get username(){return this[rC].url.username}set username(e){this[rC].url.username=e}get basePath(){return this[rC].basePath}set basePath(e){this[rC].basePath=e.startsWith("/")?e:`/${e}`}toString(){return this.href}toJSON(){return this.href}[Symbol.for("edge-runtime.inspect.custom")](){return{href:this.href,origin:this.origin,protocol:this.protocol,username:this.username,password:this.password,host:this.host,hostname:this.hostname,port:this.port,pathname:this.pathname,search:this.search,searchParams:this.searchParams,hash:this.hash}}clone(){return new rP(String(this),this[rC].options)}}class rO extends Error{constructor({page:e}){super(`The middleware "${e}" accepts an async API directly with the form:
|
|
13
|
+
You can debug event listener operations by running Next.js with \`NEXT_UNHANDLED_REJECTION_FILTER=debug\` environment variable.`),eO(),p.call(process))}),process.listeners=eC(f,function(e){return"unhandledRejection"===e?(null==t||t("Retrieving all 'unhandledRejection' listeners."),[eT,...ex]):f.call(process,e)}),e_=!0}();let eS=require("next/dist/server/app-render/work-async-storage.external.js");var ej=r("../../node_modules/.pnpm/react@19.3.0-canary-bef88f7c-20260116/node_modules/react/index.js");new WeakMap;class eN extends Error{constructor(e,t){super(`Invariant: ${e.endsWith(".")?e:e+"."} This is a bug in Next.js.`,t),this.name="InvariantError"}}function eA(e,t,r,n){let i,s,a=n.dynamicTracking;(i=Object.defineProperty(Error(`Route ${e} needs to bail out of prerendering at this point because it used ${t}.`),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0})).digest="NEXT_PRERENDER_INTERRUPTED",n.controller.abort(i),(s=n.dynamicTracking)&&s.dynamicAccesses.push({stack:s.isDebugDynamicAccesses?Error().stack:void 0,expression:t}),a&&null===a.syncDynamicErrorWithStack&&(a.syncDynamicErrorWithStack=r)}if(ej.unstable_postpone,!1===("Route %%% needs to bail out of prerendering at this point because it used ^^^. React throws this special object to indicate where. It should not be caught by your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error".includes("needs to bail out of prerendering at this point because it used")&&"Route %%% needs to bail out of prerendering at this point because it used ^^^. React throws this special object to indicate where. It should not be caught by your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error".includes("Learn more: https://nextjs.org/docs/messages/ppr-caught-error")))throw Object.defineProperty(Error("Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js"),"__NEXT_ERROR_CODE",{value:"E296",enumerable:!1,configurable:!0});function eD(e,t){let r=B.workUnitAsyncStorage.getStore(),n=eS.workAsyncStorage.getStore();if(r&&n)switch(r.type){case"prerender":case"prerender-runtime":if(!1===r.controller.signal.aborted){let i;switch(t){case"time":i=`Route "${n.route}" used ${e} before accessing either uncached data (e.g. \`fetch()\`) or Request data (e.g. \`cookies()\`, \`headers()\`, \`connection()\`, and \`searchParams\`). Accessing the current time in a Server Component requires reading one of these data sources first. Alternatively, consider moving this expression into a Client Component or Cache Component. See more info here: https://nextjs.org/docs/messages/next-prerender-current-time`;break;case"random":i=`Route "${n.route}" used ${e} before accessing either uncached data (e.g. \`fetch()\`) or Request data (e.g. \`cookies()\`, \`headers()\`, \`connection()\`, and \`searchParams\`). Accessing random values synchronously in a Server Component requires reading one of these data sources first. Alternatively, consider moving this expression into a Client Component or Cache Component. See more info here: https://nextjs.org/docs/messages/next-prerender-random`;break;case"crypto":i=`Route "${n.route}" used ${e} before accessing either uncached data (e.g. \`fetch()\`) or Request data (e.g. \`cookies()\`, \`headers()\`, \`connection()\`, and \`searchParams\`). Accessing random cryptographic values synchronously in a Server Component requires reading one of these data sources first. Alternatively, consider moving this expression into a Client Component or Cache Component. See more info here: https://nextjs.org/docs/messages/next-prerender-crypto`;break;default:throw Object.defineProperty(new eN("Unknown expression type in abortOnSynchronousPlatformIOAccess."),"__NEXT_ERROR_CODE",{value:"E526",enumerable:!1,configurable:!0})}eA(n.route,e,Object.defineProperty(Error(i),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0}),r)}break;case"prerender-client":if(!1===r.controller.signal.aborted){let i;switch(t){case"time":i=`Route "${n.route}" used ${e} inside a Client Component without a Suspense boundary above it. See more info here: https://nextjs.org/docs/messages/next-prerender-current-time-client`;break;case"random":i=`Route "${n.route}" used ${e} inside a Client Component without a Suspense boundary above it. See more info here: https://nextjs.org/docs/messages/next-prerender-random-client`;break;case"crypto":i=`Route "${n.route}" used ${e} inside a Client Component without a Suspense boundary above it. See more info here: https://nextjs.org/docs/messages/next-prerender-crypto-client`;break;default:throw Object.defineProperty(new eN("Unknown expression type in abortOnSynchronousPlatformIOAccess."),"__NEXT_ERROR_CODE",{value:"E526",enumerable:!1,configurable:!0})}eA(n.route,e,Object.defineProperty(Error(i),"__NEXT_ERROR_CODE",{value:"E394",enumerable:!1,configurable:!0}),r)}}}RegExp(`\\n\\s+at Suspense \\(<anonymous>\\)(?:(?!\\n\\s+at (?:body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6) \\(<anonymous>\\))[\\s\\S])*?\\n\\s+at __next_root_layout_boundary__ \\([^\\n]*\\)`),RegExp(`\\n\\s+at __next_metadata_boundary__[\\n\\s]`),RegExp(`\\n\\s+at __next_viewport_boundary__[\\n\\s]`),RegExp(`\\n\\s+at __next_outlet_boundary__[\\n\\s]`),require("next/dist/server/runtime-reacts.external.js");let e$="`Math.random()`";try{let e=Math.random;Math.random=(function(){return eD(e$,"random"),e.apply(null,arguments)}).bind(null),Object.defineProperty(Math.random,"name",{value:"random"})}catch{console.error(`Failed to install ${e$} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}try{let e,t,r,n;Date=(v=Date,(e=Object.getOwnPropertyDescriptors(v)).now.value=(b=v.now,({now:function(){return eD("`Date.now()`","time"),b()}})["now".slice()].bind(null)),t=Reflect.apply,r=Reflect.construct,n=Object.defineProperties(function(){return new.target===void 0?(eD("`Date()`","time"),t(v,void 0,arguments)):(0==arguments.length&&eD("`new Date()`","time"),r(v,arguments,new.target))},e),Object.defineProperty(v.prototype,"constructor",{value:n}),n)}catch{console.error("Failed to install `Date` class extension. When using `cacheComponents`, APIs that read the current time will not correctly trigger dynamic behavior.")}m="undefined"==typeof crypto?r("node:crypto").webcrypto:crypto;let ek="`crypto.getRandomValues()`";try{let e=m.getRandomValues;m.getRandomValues=function(){return eD(ek,"crypto"),e.apply(m,arguments)}}catch{console.error(`Failed to install ${ek} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}try{let e=m.randomUUID;m.randomUUID=function(){return eD("`crypto.randomUUID()`","crypto"),e.apply(m,arguments)}}catch{console.error(`Failed to install ${ek} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}{let e=r("node:crypto"),t="`require('node:crypto').randomUUID()`";try{let r=e.randomUUID;e.randomUUID=function(){return eD(t,"random"),r.apply(this,arguments)}}catch{console.error(`Failed to install ${t} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}let n="`require('node:crypto').randomBytes(size)`";try{let t=e.randomBytes;e.randomBytes=function(){return"function"!=typeof arguments[1]&&eD(n,"random"),t.apply(this,arguments)}}catch{console.error(`Failed to install ${n} extension. When using \`cacheComponents\` calling this function without a callback argument will not correctly trigger dynamic behavior.`)}let i="`require('node:crypto').randomFillSync(...)`";try{let t=e.randomFillSync;e.randomFillSync=function(){return eD(i,"random"),t.apply(this,arguments)}}catch{console.error(`Failed to install ${i} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}try{let t=e.randomInt;e.randomInt=function(){return"function"!=typeof arguments[2]&&eD("`require('node:crypto').randomInt(min, max)`","random"),t.apply(this,arguments)}}catch{console.error(`Failed to install ${n} extension. When using \`cacheComponents\` calling this function without a callback argument will not correctly trigger dynamic behavior.`)}let s="`require('node:crypto').generatePrimeSync(...)`";try{let t=e.generatePrimeSync;e.generatePrimeSync=function(){return eD(s,"random"),t.apply(this,arguments)}}catch{console.error(`Failed to install ${s} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}let a="`require('node:crypto').generateKeyPairSync(...)`";try{let t=e.generateKeyPairSync;e.generateKeyPairSync=function(){return eD(a,"random"),t.apply(this,arguments)}}catch{console.error(`Failed to install ${a} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}let o="`require('node:crypto').generateKeySync(...)`";try{let t=e.generateKeySync;e.generateKeySync=function(){return eD(o,"random"),t.apply(this,arguments)}}catch{console.error(`Failed to install ${o} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}}require("next/dist/server/node-environment-extensions/fast-set-immediate.external.js");let eI=r("path"),eM=r("module"),eL=eM.prototype.require,eq=eM._resolveFilename,eH=require.resolve,eF=new Map;!function(e=[]){for(let[t,r]of e)eF.set(t,r)}(Object.entries({"styled-jsx":eI.dirname(eH("styled-jsx/package.json")),"styled-jsx/style":eH("styled-jsx/style"),"styled-jsx/style.js":eH("styled-jsx/style")}).map(([e,t])=>[e,eH(t)])),eM._resolveFilename=(function(e,t,r,n,i,s){let a=t.get(r);return a&&(r=a),e.call(eM,r,n,i,s)}).bind(null,eq,eF),eM.prototype.require=function(e){return e.endsWith(".shared-runtime")?eL.call(this,`next/dist/server/route-modules/pages/vendored/contexts/${eI.basename(e,".shared-runtime")}`):eL.call(this,e)},r("./dist/esm/server/node-polyfill-crypto.js"),"undefined"!=typeof performance&&["mark","measure","getEntriesByName"].every(e=>"function"==typeof performance[e]);class ez extends Error{}class eU extends Error{}class eX extends Error{constructor(e){super(),this.code="ENOENT",this.name="PageNotFoundError",this.message=`Cannot find module for page: ${e}`}}class eW extends Error{constructor(e,t){super(),this.message=`Failed to load static file for page: ${e} ${t}`}}var eB=r("./dist/compiled/path-to-regexp/index.js");let eG="_NEXTSEP_";function eV(e){return"string"==typeof e&&!!(/\/\(\.{1,3}\):[^/\s]+/.test(e)||/:[a-zA-Z_][a-zA-Z0-9_]*:[a-zA-Z_][a-zA-Z0-9_]*/.test(e))}function eK(e){let t=e;return(t=t.replace(/(\([^)]*\)):([^/\s]+)/g,`$1${eG}:$2`)).replace(/:([^:/\s)]+)(?=:)/g,`:$1${eG}`)}function eY(e){return e.replace(RegExp(`\\)${eG}`,"g"),")")}function eJ(e,t,r){if("string"!=typeof e)return(0,eB.pathToRegexp)(e,t,r);let n=eV(e),i=n?eK(e):e;try{return(0,eB.pathToRegexp)(i,t,r)}catch(i){if(!n)try{let n=eK(e);return(0,eB.pathToRegexp)(n,t,r)}catch(e){}throw i}}function eQ(e,t){let r=eV(e),n=r?eK(e):e;try{let e=(0,eB.compile)(n,t);if(r)return t=>eY(e(t));return e}catch(n){if(!r)try{let r=eK(e),n=(0,eB.compile)(r,t);return e=>eY(n(e))}catch(e){}throw n}}function eZ({re:e,groups:t}){var r;return r=r=>{let n=e.exec(r);if(!n)return!1;let i=e=>{try{return decodeURIComponent(e)}catch{throw Object.defineProperty(new ez("failed to decode param"),"__NEXT_ERROR_CODE",{value:"E528",enumerable:!1,configurable:!0})}},s={};for(let[e,r]of Object.entries(t)){let t=n[r.pos];void 0!==t&&(r.repeat?s[e]=t.split("/").map(e=>i(e)):s[e]=i(t))}return s},e=>{let t=r(e);if(!t)return!1;let n={};for(let[e,r]of Object.entries(t))"string"==typeof r?n[e]=r.replace(RegExp(`^${eG}`),""):Array.isArray(r)?n[e]=r.map(e=>"string"==typeof e?e.replace(RegExp(`^${eG}`),""):e):n[e]=r;return n}}let e0=Symbol.for("NextInternalRequestMeta");function e1(e,t){let r=e[e0]||{};return"string"==typeof t?r[t]:r}function e4(e,t,r){let n=e1(e);return n[t]=r,e[e0]=n,n}function e2(e,t){let r=e1(e);return delete r[t],e[e0]=r,r}r("./dist/esm/shared/lib/modern-browserslist-target.js");let e3="/_not-found",e8=`${e3}/page`,e9="pages-manifest.json",e6="app-paths-manifest.json",e5="server";[...process?.features?.typescript?["next.config.mts"]:[]];let e7=["/_document","/_app","/_error"];Symbol("polyfills");let te=["/500"];function tt(e,t){let r=A().join(e,t);return ed().existsSync(r)||(r=A().join(e,"src",t),ed().existsSync(r))?r:null}class tr{static get(e,t,r){let n=Reflect.get(e,t,r);return"function"==typeof n?n.bind(e):n}static set(e,t,r,n){return Reflect.set(e,t,r,n)}static has(e,t){return Reflect.has(e,t)}static deleteProperty(e,t){return Reflect.deleteProperty(e,t)}}class tn extends Error{constructor(){super("Headers cannot be modified. Read more: https://nextjs.org/docs/app/api-reference/functions/headers")}static callable(){throw new tn}}class ti extends Headers{constructor(e){super(),this.headers=new Proxy(e,{get(t,r,n){if("symbol"==typeof r)return tr.get(t,r,n);let i=r.toLowerCase(),s=Object.keys(e).find(e=>e.toLowerCase()===i);if(void 0!==s)return tr.get(t,s,n)},set(t,r,n,i){if("symbol"==typeof r)return tr.set(t,r,n,i);let s=r.toLowerCase(),a=Object.keys(e).find(e=>e.toLowerCase()===s);return tr.set(t,a??r,n,i)},has(t,r){if("symbol"==typeof r)return tr.has(t,r);let n=r.toLowerCase(),i=Object.keys(e).find(e=>e.toLowerCase()===n);return void 0!==i&&tr.has(t,i)},deleteProperty(t,r){if("symbol"==typeof r)return tr.deleteProperty(t,r);let n=r.toLowerCase(),i=Object.keys(e).find(e=>e.toLowerCase()===n);return void 0===i||tr.deleteProperty(t,i)}})}static seal(e){return new Proxy(e,{get(e,t,r){switch(t){case"append":case"delete":case"set":return tn.callable;default:return tr.get(e,t,r)}}})}merge(e){return Array.isArray(e)?e.join(", "):e}static from(e){return e instanceof Headers?e:new ti(e)}append(e,t){let r=this.headers[e];"string"==typeof r?this.headers[e]=[r,t]:Array.isArray(r)?r.push(t):this.headers[e]=t}delete(e){delete this.headers[e]}get(e){let t=this.headers[e];return void 0!==t?this.merge(t):null}has(e){return void 0!==this.headers[e]}set(e,t){this.headers[e]=t}forEach(e,t){for(let[r,n]of this.entries())e.call(t,n,r,this)}*entries(){for(let e of Object.keys(this.headers)){let t=e.toLowerCase(),r=this.get(t);yield[t,r]}}*keys(){for(let e of Object.keys(this.headers)){let t=e.toLowerCase();yield t}}*values(){for(let e of Object.keys(this.headers)){let t=this.get(e);yield t}}[Symbol.iterator](){return this.entries()}}let ts="text/html; charset=utf-8",ta="nxtP",to="nxtI",tl="x-matched-path",tc=".segments",tu=".segment.rsc",td=".rsc",th=".json",tp=".meta",tf="x-next-cache-tags",tm="x-next-revalidated-tags",tg={shared:"shared",reactServerComponents:"rsc",serverSideRendering:"ssr",actionBrowser:"action-browser",apiNode:"api-node",apiEdge:"api-edge",middleware:"middleware",instrument:"instrument",edgeAsset:"edge-asset",appPagesBrowser:"app-pages-browser",pagesDirBrowser:"pages-dir-browser",pagesDirEdge:"pages-dir-edge",pagesDirNode:"pages-dir-node"};({...tg,GROUP:{builtinReact:[tg.reactServerComponents,tg.actionBrowser],serverOnly:[tg.reactServerComponents,tg.actionBrowser,tg.instrument,tg.middleware],neutralTarget:[tg.apiNode,tg.apiEdge],clientOnly:[tg.serverSideRendering,tg.appPagesBrowser],bundled:[tg.reactServerComponents,tg.actionBrowser,tg.serverSideRendering,tg.appPagesBrowser,tg.shared,tg.instrument,tg.middleware],appPages:[tg.reactServerComponents,tg.serverSideRendering,tg.appPagesBrowser,tg.actionBrowser]}});let ty=require("next/dist/server/lib/trace/tracer");var tv=((E=tv||{}).handleRequest="BaseServer.handleRequest",E.run="BaseServer.run",E.pipe="BaseServer.pipe",E.getStaticHTML="BaseServer.getStaticHTML",E.render="BaseServer.render",E.renderToResponseWithComponents="BaseServer.renderToResponseWithComponents",E.renderToResponse="BaseServer.renderToResponse",E.renderToHTML="BaseServer.renderToHTML",E.renderError="BaseServer.renderError",E.renderErrorToResponse="BaseServer.renderErrorToResponse",E.renderErrorToHTML="BaseServer.renderErrorToHTML",E.render404="BaseServer.render404",E),tb=((_=tb||{}).loadDefaultErrorComponents="LoadComponents.loadDefaultErrorComponents",_.loadComponents="LoadComponents.loadComponents",_),tE=((x=tE||{}).compression="NextNodeServer.compression",x.getBuildId="NextNodeServer.getBuildId",x.createComponentTree="NextNodeServer.createComponentTree",x.clientComponentLoading="NextNodeServer.clientComponentLoading",x.getLayoutOrPageModule="NextNodeServer.getLayoutOrPageModule",x.generateStaticRoutes="NextNodeServer.generateStaticRoutes",x.generateFsStaticRoutes="NextNodeServer.generateFsStaticRoutes",x.generatePublicRoutes="NextNodeServer.generatePublicRoutes",x.generateImageRoutes="NextNodeServer.generateImageRoutes.route",x.sendRenderResult="NextNodeServer.sendRenderResult",x.proxyRequest="NextNodeServer.proxyRequest",x.runApi="NextNodeServer.runApi",x.render="NextNodeServer.render",x.renderHTML="NextNodeServer.renderHTML",x.imageOptimizer="NextNodeServer.imageOptimizer",x.getPagePath="NextNodeServer.getPagePath",x.getRoutesManifest="NextNodeServer.getRoutesManifest",x.findPageComponents="NextNodeServer.findPageComponents",x.getFontManifest="NextNodeServer.getFontManifest",x.getServerComponentManifest="NextNodeServer.getServerComponentManifest",x.getRequestHandler="NextNodeServer.getRequestHandler",x.renderToHTML="NextNodeServer.renderToHTML",x.renderError="NextNodeServer.renderError",x.renderErrorToHTML="NextNodeServer.renderErrorToHTML",x.render404="NextNodeServer.render404",x.startResponse="NextNodeServer.startResponse",x.route="route",x.onProxyReq="onProxyReq",x.apiResolver="apiResolver",x.internalFetch="internalFetch",x);Symbol("__next_preview_data");let t_=Symbol("__prerender_bypass");var tx=((w={})[w.SeeOther=303]="SeeOther",w[w.TemporaryRedirect=307]="TemporaryRedirect",w[w.PermanentRedirect=308]="PermanentRedirect",w);function tw(e){return function(){let{cookie:t}=e;if(!t)return{};let{parse:n}=r("./dist/compiled/cookie/index.js");return n(Array.isArray(t)?t.join("; "):t)}}class tR{constructor(e,t,r){this.method=e,this.url=t,this.body=r}get cookies(){return this._cookies?this._cookies:this._cookies=tw(this.headers)()}}class tC{constructor(e){this.destination=e}redirect(e,t){return this.setHeader("Location",e),this.statusCode=t,t===tx.PermanentRedirect&&this.setHeader("Refresh",`0;url=${e}`),this}}class tP extends tR{static #e=T=e0;constructor(e){var t;super(e.method.toUpperCase(),e.url,e),this._req=e,this.headers=this._req.headers,this.fetchMetrics=null==(t=this._req)?void 0:t.fetchMetrics,this[T]=this._req[e0]||{},this.streaming=!1}get originalRequest(){return this._req[e0]=this[e0],this._req.url=this.url,this._req.cookies=this.cookies,this._req}set originalRequest(e){this._req=e}stream(){if(this.streaming)throw Object.defineProperty(Error("Invariant: NodeNextRequest.stream() can only be called once"),"__NEXT_ERROR_CODE",{value:"E467",enumerable:!1,configurable:!0});return this.streaming=!0,new ReadableStream({start:e=>{this._req.on("data",t=>{e.enqueue(new Uint8Array(t))}),this._req.on("end",()=>{e.close()}),this._req.on("error",t=>{e.error(t)})}})}}class tO extends tC{get originalResponse(){return t_ in this&&(this._res[t_]=this[t_]),this._res}constructor(e){super(e),this._res=e,this.textBody=void 0}get sent(){return this._res.finished||this._res.headersSent}get statusCode(){return this._res.statusCode}set statusCode(e){this._res.statusCode=e}get statusMessage(){return this._res.statusMessage}set statusMessage(e){this._res.statusMessage=e}setHeader(e,t){return this._res.setHeader(e,t),this}removeHeader(e){return this._res.removeHeader(e),this}getHeaderValues(e){let t=this._res.getHeader(e);if(void 0!==t)return(Array.isArray(t)?t:[t]).map(e=>e.toString())}hasHeader(e){return this._res.hasHeader(e)}getHeader(e){let t=this.getHeaderValues(e);return Array.isArray(t)?t.join(","):void 0}getHeaders(){return this._res.getHeaders()}appendHeader(e,t){let r=this.getHeaderValues(e)??[];return r.includes(t)||this._res.setHeader(e,[...r,t]),this}body(e){return this.textBody=e,this}send(){this._res.end(this.textBody)}onClose(e){this.originalResponse.on("close",e)}}var tT=r("./dist/compiled/fresh/index.js"),tS=r.n(tT);async function tj({req:e,res:t,result:r,generateEtags:n,poweredByHeader:i,cacheControl:s}){if(t.finished||t.headersSent)return;i&&r.contentType===ts&&t.setHeader("X-Powered-By","Next.js"),s&&!t.getHeader("Cache-Control")&&t.setHeader("Cache-Control",function({revalidate:e,expire:t}){let r="number"==typeof e&&void 0!==t&&e<t?`, stale-while-revalidate=${t-e}`:"";return 0===e?"private, no-cache, no-store, max-age=0, must-revalidate":"number"==typeof e?`s-maxage=${e}${r}`:`s-maxage=31536000${r}`}(s));let a=r.isDynamic?null:r.toUnchunkedString();if(n&&null!==a){let r=((e,t=!1)=>(t?'W/"':'"')+(e=>{let t=e.length,r=0,n=0,i=8997,s=0,a=33826,o=0,l=40164,c=0,u=52210;for(;r<t;)i^=e.charCodeAt(r++),n=435*i,s=435*a,o=435*l,c=435*u,o+=i<<8,c+=a<<8,s+=n>>>16,i=65535&n,o+=s>>>16,a=65535&s,u=c+(o>>>16)&65535,l=65535&o;return(15&u)*0x1000000000000+0x100000000*l+65536*a+(i^u>>4)})(e).toString(36)+e.length.toString(36)+'"')(a);if(r&&t.setHeader("ETag",r),tS()(e.headers,{etag:r})&&(t.statusCode=304,t.end(),1))return}(!t.getHeader("Content-Type")&&r.contentType&&t.setHeader("Content-Type",r.contentType),a&&t.setHeader("Content-Length",Buffer.byteLength(a)),"HEAD"===e.method)?t.end(null):null!==a?t.end(a):await r.pipeToNodeResponse(t)}function tN(e){let t={};for(let[r,n]of e.entries()){let e=t[r];void 0===e?t[r]=n:Array.isArray(e)?e.push(n):t[r]=[e,n]}return t}function tA(e){return"string"==typeof e?e:("number"!=typeof e||isNaN(e))&&"boolean"!=typeof e?"":String(e)}function tD(e){if(e.startsWith("/"))return function(e,t,r=!0){let n=new URL("http://n"),i=e.startsWith(".")?new URL("http://n"):n,{pathname:s,searchParams:a,search:o,hash:l,href:c,origin:u}=e.startsWith("/")?new URL(`${i.protocol}//${i.host}${e}`):new URL(e,i);if(u!==n.origin)throw Object.defineProperty(Error(`invariant: invalid relative URL, router received ${e}`),"__NEXT_ERROR_CODE",{value:"E159",enumerable:!1,configurable:!0});return{auth:null,host:null,hostname:null,pathname:s,port:null,protocol:null,query:r?tN(a):void 0,search:o,hash:l,href:c.slice(u.length),slashes:null}}(e);let t=new URL(e),r=t.username,n=t.password,i=r?n?`${r}:${n}`:r:null,s=t.pathname,a=t.search;return{auth:i,hash:t.hash,hostname:t.hostname,href:t.href,pathname:s,port:t.port,protocol:t.protocol,query:tN(t.searchParams),search:a,origin:t.origin,slashes:"//"===t.href.slice(t.protocol.length,t.protocol.length+2)}}let t$={wait:es(Q("○")),error:et(Q("⨯")),warn:en(Q("⚠")),ready:"▲",info:es(Q(" ")),event:er(Q("✓")),trace:ei(Q("\xbb"))},tk={log:"log",warn:"warn",error:"error"};function tI(e,...t){(""===t[0]||void 0===t[0])&&1===t.length&&t.shift();let r=e in tk?tk[e]:"log",n=t$[e];0===t.length?console[r](""):1===t.length&&"string"==typeof t[0]?console[r](n+" "+t[0]):console[r](n,...t)}function tM(e){console.log(e)}function tL(...e){tI("wait",...e)}function tq(...e){tI("error",...e)}function tH(...e){tI("warn",...e)}function tF(...e){tI("ready",...e)}function tz(...e){tI("info",...e)}function tU(...e){tI("event",...e)}function tX(...e){tI("trace",...e)}let tW=new M(1e4,e=>e.length);function tB(...e){let t=e.join(" ");tW.has(t)||(tW.set(t,t),tH(...e))}let tG=new M(1e4,e=>e.length);function tV(...e){let t=e.join(" ");tG.has(t)||(tG.set(t,t),tq(...e))}var tK=r("os"),tY=r.n(tK);let tJ="100 MB";function tQ(e){let t=r("./dist/compiled/bytes/index.js").parse(e??tJ);return null===t||isNaN(t)||t<1?void 0:t}Object.freeze({env:{},webpack:null,typescript:{ignoreBuildErrors:!1,tsconfigPath:void 0},typedRoutes:!1,distDir:".next",cleanDistDir:!0,assetPrefix:"",cacheHandler:process.env.NEXT_CACHE_HANDLER_PATH,cacheMaxMemorySize:0x3200000,configOrigin:"default",useFileSystemPublicRoutes:!0,generateBuildId:()=>null,generateEtags:!0,pageExtensions:["tsx","ts","jsx","js"],poweredByHeader:!0,compress:!0,images:{deviceSizes:[640,750,828,1080,1200,1920,2048,3840],imageSizes:[32,48,64,96,128,256,384],path:"/_next/image",loader:"default",loaderFile:"",domains:[],disableStaticImages:!1,minimumCacheTTL:14400,formats:["image/webp"],maximumRedirects:3,maximumResponseBody:5e7,dangerouslyAllowLocalIP:!1,dangerouslyAllowSVG:!1,contentSecurityPolicy:"script-src 'none'; frame-src 'none'; sandbox;",contentDispositionType:"attachment",localPatterns:void 0,remotePatterns:[],qualities:[75],unoptimized:!1,customCacheHandler:!1},devIndicators:{position:"bottom-left"},onDemandEntries:{maxInactiveAge:6e4,pagesBufferLength:5},basePath:"",sassOptions:{},trailingSlash:!1,i18n:null,productionBrowserSourceMaps:!1,excludeDefaultMomentLocales:!0,reactProductionProfiling:!1,reactStrictMode:null,reactMaxHeadersLength:6e3,httpAgentOptions:{keepAlive:!0},logging:{},compiler:{},expireTime:process.env.NEXT_PRIVATE_CDN_CONSUMED_SWR_CACHE_CONTROL?void 0:31536e3,staticPageGenerationTimeout:60,output:process.env.NEXT_PRIVATE_STANDALONE?"standalone":void 0,modularizeImports:void 0,outputFileTracingRoot:process.env.NEXT_PRIVATE_OUTPUT_TRACE_ROOT||"",allowedDevOrigins:void 0,enablePrerenderSourceMaps:void 0,cacheComponents:!1,cacheLife:{default:{stale:void 0,revalidate:900,expire:0xfffffffe},seconds:{stale:30,revalidate:1,expire:60},minutes:{stale:300,revalidate:60,expire:3600},hours:{stale:300,revalidate:3600,expire:86400},days:{stale:300,revalidate:86400,expire:604800},weeks:{stale:300,revalidate:604800,expire:2592e3},max:{stale:300,revalidate:2592e3,expire:31536e3}},cacheHandlers:{default:process.env.NEXT_DEFAULT_CACHE_HANDLER_PATH,remote:process.env.NEXT_REMOTE_CACHE_HANDLER_PATH,static:process.env.NEXT_STATIC_CACHE_HANDLER_PATH},experimental:{adapterPath:process.env.NEXT_ADAPTER_PATH||void 0,useSkewCookie:!1,cssChunking:!0,multiZoneDraftMode:!1,appNavFailHandling:!1,prerenderEarlyExit:!0,serverMinification:!0,linkNoTouchStart:!1,caseSensitiveRoutes:!1,clientParamParsingOrigins:void 0,dynamicOnHover:!1,preloadEntriesOnStart:!0,clientRouterFilter:!0,clientRouterFilterRedirects:!1,fetchCacheKeyPrefix:"",proxyPrefetch:"flexible",optimisticClientCache:!0,manualClientBasePath:!1,cpus:Math.max(1,(Number(process.env.CIRCLE_NODE_TOTAL)||(tY().cpus()||{length:1}).length)-1),memoryBasedWorkersCount:!1,imgOptConcurrency:null,imgOptTimeoutInSeconds:7,imgOptMaxInputPixels:0xfff8001,imgOptSequentialRead:null,imgOptSkipMetadata:null,isrFlushToDisk:!0,workerThreads:!1,proxyTimeout:void 0,optimizeCss:!1,nextScriptWorkers:!1,scrollRestoration:!1,externalDir:!1,disableOptimizedLoading:!1,gzipSize:!0,craCompat:!1,esmExternals:!0,fullySpecified:!1,swcTraceProfiling:!1,forceSwcTransforms:!1,swcPlugins:void 0,largePageDataBytes:128e3,disablePostcssPresetEnv:void 0,urlImports:void 0,typedEnv:!1,clientTraceMetadata:void 0,parallelServerCompiles:!1,parallelServerBuildTraces:!1,ppr:!1,authInterrupts:!1,webpackBuildWorker:void 0,webpackMemoryOptimizations:!1,optimizeServerReact:!0,strictRouteTypes:!1,viewTransition:!1,removeUncaughtErrorAndRejectionListeners:!1,validateRSCRequestHeaders:!!(process.env.__NEXT_TEST_MODE||!(!"16.1.1-canary.33".includes("canary")&&!process.env.__NEXT_TEST_MODE&&!process.env.NEXT_PRIVATE_LOCAL_DEV)),staleTimes:{dynamic:0,static:300},allowDevelopmentBuild:void 0,reactDebugChannel:!1,staticGenerationRetryCount:void 0,serverComponentsHmrCache:!0,staticGenerationMaxConcurrency:8,staticGenerationMinPagesPerWorker:25,transitionIndicator:!1,inlineCss:!1,useCache:void 0,slowModuleDetection:void 0,globalNotFound:!1,browserDebugInfoInTerminal:"warn",lockDistDir:!0,isolatedDevBuild:!0,proxyClientMaxBodySize:0xa00000,hideLogsAfterAbort:!1,mcpServer:!0,turbopackFileSystemCacheForDev:!0,turbopackFileSystemCacheForBuild:!1,turbopackInferModuleSideEffects:!0,devCacheControlNoCache:!1},htmlLimitedBots:void 0,bundlePagesRouterDependencies:!1});let tZ="(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])",t0=`(${tZ}[.]){3}${tZ}`,t1="(?:[0-9a-fA-F]{1,4})",t4=RegExp(`^((?:${t1}:){7}(?:${t1}|:)|(?:${t1}:){6}(?:${t0}|:${t1}|:)|(?:${t1}:){5}(?::${t0}|(:${t1}){1,2}|:)|(?:${t1}:){4}(?:(:${t1}){0,1}:${t0}|(:${t1}){1,3}|:)|(?:${t1}:){3}(?:(:${t1}){0,2}:${t0}|(:${t1}){1,4}|:)|(?:${t1}:){2}(?:(:${t1}){0,3}:${t0}|(:${t1}){1,5}|:)|(?:${t1}:){1}(?:(:${t1}){0,4}:${t0}|(:${t1}){1,6}|:)|(?::((?::${t1}){0,5}:${t0}|(?::${t1}){1,7}|:)))(%[0-9a-zA-Z-.:]{1,})?$`);function t2(e){return e.startsWith("/")?e:`/${e}`}function t3(e){return t2(e.split("/").reduce((e,t,r,n)=>t?"("===t[0]&&t.endsWith(")")||"@"===t[0]||("page"===t||"route"===t)&&r===n.length-1?e:`${e}/${t}`:e,""))}function t8(e){return e.replace(/\.rsc($|\?)/,"$1")}let t9=["(..)(..)","(.)","(..)","(...)"];function t6(e){return void 0!==e.split("/").find(e=>t9.find(t=>e.startsWith(t)))}let t5=/\/[^/]*\[[^/]+\][^/]*(?=\/|$)/,t7=/\/\[[^/]+\](?=\/|$)/;function re(e,t=!0){return(t6(e)&&(e=function(e){let t,r,n;for(let i of e.split("/"))if(r=t9.find(e=>i.startsWith(e))){[t,n]=e.split(r,2);break}if(!t||!r||!n)throw Object.defineProperty(Error(`Invalid interception route: ${e}. Must be in the format /<intercepting route>/(..|...|..)(..)/<intercepted route>`),"__NEXT_ERROR_CODE",{value:"E269",enumerable:!1,configurable:!0});switch(t=t3(t),r){case"(.)":n="/"===t?`/${n}`:t+"/"+n;break;case"(..)":if("/"===t)throw Object.defineProperty(Error(`Invalid interception route: ${e}. Cannot use (..) marker at the root level, use (.) instead.`),"__NEXT_ERROR_CODE",{value:"E207",enumerable:!1,configurable:!0});n=t.split("/").slice(0,-1).concat(n).join("/");break;case"(...)":n="/"+n;break;case"(..)(..)":let i=t.split("/");if(i.length<=2)throw Object.defineProperty(Error(`Invalid interception route: ${e}. Cannot use (..)(..) marker at the root level or one level up.`),"__NEXT_ERROR_CODE",{value:"E486",enumerable:!1,configurable:!0});n=i.slice(0,-2).concat(n).join("/");break;default:throw Object.defineProperty(Error("Invariant: unexpected marker"),"__NEXT_ERROR_CODE",{value:"E112",enumerable:!1,configurable:!0})}return{interceptingRoute:t,interceptedRoute:n}}(e).interceptedRoute),t)?t7.test(e):t5.test(e)}let rt=/[\w-]+-Google|Google-[\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i,rr=/Googlebot(?!-)|Googlebot$/i,rn=rt.source;function ri(){}new Uint8Array([60,104,116,109,108]),new Uint8Array([60,98,111,100,121]),new Uint8Array([60,47,104,101,97,100,62]),new Uint8Array([60,47,98,111,100,121,62]),new Uint8Array([60,47,104,116,109,108,62]),new Uint8Array([60,47,98,111,100,121,62,60,47,104,116,109,108,62]),new Uint8Array([60,109,101,116,97,32,110,97,109,101,61,34,194,171,110,120,116,45,105,99,111,110,194,187,34]);let rs=new TextEncoder;function ra(e){return new ReadableStream({start(t){t.enqueue(rs.encode(e)),t.close()}})}function ro(e){return new ReadableStream({start(t){t.enqueue(e),t.close()}})}async function rl(e,t){let r=new TextDecoder("utf-8",{fatal:!0}),n="";for await(let i of e){if(null==t?void 0:t.aborted)return n;n+=r.decode(i,{stream:!0})}return n+r.decode()}function rc(e){var t,r,n,i,s,a=[],o=0;function l(){for(;o<e.length&&/\s/.test(e.charAt(o));)o+=1;return o<e.length}for(;o<e.length;){for(t=o,s=!1;l();)if(","===(r=e.charAt(o))){for(n=o,o+=1,l(),i=o;o<e.length&&"="!==(r=e.charAt(o))&&";"!==r&&","!==r;)o+=1;o<e.length&&"="===e.charAt(o)?(s=!0,o=i,a.push(e.substring(t,n)),t=o):o=n+1}else o+=1;(!s||o>=e.length)&&a.push(e.substring(t,e.length))}return a}function ru(e){let t={},r=[];if(e)for(let[n,i]of e.entries())"set-cookie"===n.toLowerCase()?(r.push(...rc(i)),t[n]=1===r.length?r[0]:r):t[n]=i;return t}function rd(e){try{return String(new URL(String(e)))}catch(t){throw Object.defineProperty(Error(`URL is malformed "${String(e)}". Please use only absolute URLs - https://nextjs.org/docs/messages/middleware-relative-urls`,{cause:t}),"__NEXT_ERROR_CODE",{value:"E61",enumerable:!1,configurable:!0})}}function rh(e){for(let t of[ta,to])if(e!==t&&e.startsWith(t))return e.substring(t.length);return null}function rp(e){return e.replace(/\/$/,"")||"/"}function rf(e){let t=e.indexOf("#"),r=e.indexOf("?"),n=r>-1&&(t<0||r<t);return n||t>-1?{pathname:e.substring(0,n?r:t),query:n?e.substring(r,t>-1?t:void 0):"",hash:t>-1?e.slice(t):""}:{pathname:e,query:"",hash:""}}function rm(e,t){if(!e.startsWith("/")||!t)return e;let{pathname:r,query:n,hash:i}=rf(e);return`${t}${r}${n}${i}`}function rg(e,t){if(!e.startsWith("/")||!t)return e;let{pathname:r,query:n,hash:i}=rf(e);return`${r}${t}${n}${i}`}function ry(e,t){if("string"!=typeof e)return!1;let{pathname:r}=rf(e);return r===t||r.startsWith(t+"/")}function rv(e,t){let r;if(t?.host&&!Array.isArray(t.host))r=t.host.toString().split(":",1)[0];else{if(!e.hostname)return;r=e.hostname}return r.toLowerCase()}let rb=new WeakMap;function rE(e,t){let r;if(!t)return{pathname:e};let n=rb.get(t);n||(n=t.map(e=>e.toLowerCase()),rb.set(t,n));let i=e.split("/",2);if(!i[1])return{pathname:e};let s=i[1].toLowerCase(),a=n.indexOf(s);return a<0?{pathname:e}:(r=t[a],{pathname:e=e.slice(r.length+1)||"/",detectedLocale:r})}function r_(e,t){if(!ry(e,t))return e;let r=e.slice(t.length);return r.startsWith("/")?r:`/${r}`}function rx(e,t){let{basePath:r,i18n:n,trailingSlash:i}=t.nextConfig??{},s={pathname:e,trailingSlash:"/"!==e?e.endsWith("/"):i};r&&ry(s.pathname,r)&&(s.pathname=r_(s.pathname,r),s.basePath=r);let a=s.pathname;if(s.pathname.startsWith("/_next/data/")&&s.pathname.endsWith(".json")){let e=s.pathname.replace(/^\/_next\/data\//,"").replace(/\.json$/,"").split("/");s.buildId=e[0],a="index"!==e[1]?`/${e.slice(1).join("/")}`:"/",!0===t.parseData&&(s.pathname=a)}if(n){let e=t.i18nProvider?t.i18nProvider.analyze(s.pathname):rE(s.pathname,n.locales);s.locale=e.detectedLocale,s.pathname=e.pathname??s.pathname,!e.detectedLocale&&s.buildId&&(e=t.i18nProvider?t.i18nProvider.analyze(a):rE(a,n.locales)).detectedLocale&&(s.locale=e.detectedLocale)}return s}let rw=/(?!^https?:\/\/)(127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}|\[::1\]|localhost)/;function rR(e,t){return new URL(String(e).replace(rw,"localhost"),t&&String(t).replace(rw,"localhost"))}let rC=Symbol("NextURLInternal");class rP{constructor(e,t,r){let n,i;"object"==typeof t&&"pathname"in t||"string"==typeof t?(n=t,i=r||{}):i=r||t||{},this[rC]={url:rR(e,n??i.base),options:i,basePath:""},this.analyze()}analyze(){var e,t,r,n,i;let s=rx(this[rC].url.pathname,{nextConfig:this[rC].options.nextConfig,parseData:!process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE,i18nProvider:this[rC].options.i18nProvider}),a=rv(this[rC].url,this[rC].options.headers);this[rC].domainLocale=this[rC].options.i18nProvider?this[rC].options.i18nProvider.detectDomainLocale(a):function(e,t,r){if(e){for(let n of(r&&(r=r.toLowerCase()),e))if(t===n.domain?.split(":",1)[0].toLowerCase()||r===n.defaultLocale.toLowerCase()||n.locales?.some(e=>e.toLowerCase()===r))return n}}(null==(t=this[rC].options.nextConfig)||null==(e=t.i18n)?void 0:e.domains,a);let o=(null==(r=this[rC].domainLocale)?void 0:r.defaultLocale)||(null==(i=this[rC].options.nextConfig)||null==(n=i.i18n)?void 0:n.defaultLocale);this[rC].url.pathname=s.pathname,this[rC].defaultLocale=o,this[rC].basePath=s.basePath??"",this[rC].buildId=s.buildId,this[rC].locale=s.locale??o,this[rC].trailingSlash=s.trailingSlash}formatPathname(){var e;let t;return t=function(e,t,r,n){if(!t||t===r)return e;let i=e.toLowerCase();return!n&&(ry(i,"/api")||ry(i,`/${t.toLowerCase()}`))?e:rm(e,`/${t}`)}((e={basePath:this[rC].basePath,buildId:this[rC].buildId,defaultLocale:this[rC].options.forceLocale?void 0:this[rC].defaultLocale,locale:this[rC].locale,pathname:this[rC].url.pathname,trailingSlash:this[rC].trailingSlash}).pathname,e.locale,e.buildId?void 0:e.defaultLocale,e.ignorePrefix),(e.buildId||!e.trailingSlash)&&(t=rp(t)),e.buildId&&(t=rg(rm(t,`/_next/data/${e.buildId}`),"/"===e.pathname?"index.json":".json")),t=rm(t,e.basePath),!e.buildId&&e.trailingSlash?t.endsWith("/")?t:rg(t,"/"):rp(t)}formatSearch(){return this[rC].url.search}get buildId(){return this[rC].buildId}set buildId(e){this[rC].buildId=e}get locale(){return this[rC].locale??""}set locale(e){var t,r;if(!this[rC].locale||!(null==(r=this[rC].options.nextConfig)||null==(t=r.i18n)?void 0:t.locales.includes(e)))throw Object.defineProperty(TypeError(`The NextURL configuration includes no locale "${e}"`),"__NEXT_ERROR_CODE",{value:"E597",enumerable:!1,configurable:!0});this[rC].locale=e}get defaultLocale(){return this[rC].defaultLocale}get domainLocale(){return this[rC].domainLocale}get searchParams(){return this[rC].url.searchParams}get host(){return this[rC].url.host}set host(e){this[rC].url.host=e}get hostname(){return this[rC].url.hostname}set hostname(e){this[rC].url.hostname=e}get port(){return this[rC].url.port}set port(e){this[rC].url.port=e}get protocol(){return this[rC].url.protocol}set protocol(e){this[rC].url.protocol=e}get href(){let e=this.formatPathname(),t=this.formatSearch();return`${this.protocol}//${this.host}${e}${t}${this.hash}`}set href(e){this[rC].url=rR(e),this.analyze()}get origin(){return this[rC].url.origin}get pathname(){return this[rC].url.pathname}set pathname(e){this[rC].url.pathname=e}get hash(){return this[rC].url.hash}set hash(e){this[rC].url.hash=e}get search(){return this[rC].url.search}set search(e){this[rC].url.search=e}get password(){return this[rC].url.password}set password(e){this[rC].url.password=e}get username(){return this[rC].url.username}set username(e){this[rC].url.username=e}get basePath(){return this[rC].basePath}set basePath(e){this[rC].basePath=e.startsWith("/")?e:`/${e}`}toString(){return this.href}toJSON(){return this.href}[Symbol.for("edge-runtime.inspect.custom")](){return{href:this.href,origin:this.origin,protocol:this.protocol,username:this.username,password:this.password,host:this.host,hostname:this.hostname,port:this.port,pathname:this.pathname,search:this.search,searchParams:this.searchParams,hash:this.hash}}clone(){return new rP(String(this),this[rC].options)}}class rO extends Error{constructor({page:e}){super(`The middleware "${e}" accepts an async API directly with the form:
|
|
14
14
|
|
|
15
15
|
export function middleware(request, event) {
|
|
16
16
|
return NextResponse.redirect('/new-location')
|
package/dist/esm/build/index.js
CHANGED
|
@@ -312,7 +312,7 @@ export default async function build(dir, experimentalAnalyze = false, reactProdu
|
|
|
312
312
|
try {
|
|
313
313
|
const nextBuildSpan = trace('next-build', undefined, {
|
|
314
314
|
buildMode: experimentalBuildMode,
|
|
315
|
-
version: "16.1.1-canary.
|
|
315
|
+
version: "16.1.1-canary.33"
|
|
316
316
|
});
|
|
317
317
|
NextBuildContext.nextBuildSpan = nextBuildSpan;
|
|
318
318
|
NextBuildContext.dir = dir;
|
|
@@ -822,7 +822,7 @@ export default async function build(dir, experimentalAnalyze = false, reactProdu
|
|
|
822
822
|
// Files outside of the distDir can be "type": "module"
|
|
823
823
|
await writeFileUtf8(path.join(distDir, 'package.json'), '{"type": "commonjs"}');
|
|
824
824
|
// These are written to distDir, so they need to come after creating and cleaning distDr.
|
|
825
|
-
await recordFrameworkVersion("16.1.1-canary.
|
|
825
|
+
await recordFrameworkVersion("16.1.1-canary.33");
|
|
826
826
|
await updateBuildDiagnostics({
|
|
827
827
|
buildStage: 'start'
|
|
828
828
|
});
|
|
@@ -2505,7 +2505,7 @@ export default async function build(dir, experimentalAnalyze = false, reactProdu
|
|
|
2505
2505
|
configOutDir: path.join(dir, configOutDir),
|
|
2506
2506
|
staticPages,
|
|
2507
2507
|
serverPropsPages,
|
|
2508
|
-
nextVersion: "16.1.1-canary.
|
|
2508
|
+
nextVersion: "16.1.1-canary.33",
|
|
2509
2509
|
tracingRoot: outputFileTracingRoot,
|
|
2510
2510
|
hasNodeMiddleware,
|
|
2511
2511
|
hasInstrumentationHook,
|
|
@@ -10,7 +10,7 @@ import { downloadNativeNextSwc, downloadWasmSwc } from '../../lib/download-swc';
|
|
|
10
10
|
import { isDeepStrictEqual } from 'util';
|
|
11
11
|
import { getDefineEnv } from '../define-env';
|
|
12
12
|
import { throwTurbopackInternalError } from '../../shared/lib/turbopack/internal-error';
|
|
13
|
-
const nextVersion = "16.1.1-canary.
|
|
13
|
+
const nextVersion = "16.1.1-canary.33";
|
|
14
14
|
const ArchName = arch();
|
|
15
15
|
const PlatformName = platform();
|
|
16
16
|
function infoLog(...args) {
|
|
@@ -1622,7 +1622,7 @@ export default async function getBaseWebpackConfig(dir, { buildId, encryptionKey
|
|
|
1622
1622
|
isClient && new CopyFilePlugin({
|
|
1623
1623
|
// file path to build output of `@next/polyfill-nomodule`
|
|
1624
1624
|
filePath: require.resolve('./polyfills/polyfill-nomodule'),
|
|
1625
|
-
cacheKey: "16.1.1-canary.
|
|
1625
|
+
cacheKey: "16.1.1-canary.33",
|
|
1626
1626
|
name: `static/chunks/polyfills${dev ? '' : '-[hash]'}.js`,
|
|
1627
1627
|
minimize: false,
|
|
1628
1628
|
info: {
|
|
@@ -1816,7 +1816,7 @@ export default async function getBaseWebpackConfig(dir, { buildId, encryptionKey
|
|
|
1816
1816
|
// - Next.js location on disk (some loaders use absolute paths and some resolve options depend on absolute paths)
|
|
1817
1817
|
// - Next.js version
|
|
1818
1818
|
// - next.config.js keys that affect compilation
|
|
1819
|
-
version: `${__dirname}|${"16.1.1-canary.
|
|
1819
|
+
version: `${__dirname}|${"16.1.1-canary.33"}|${configVars}`,
|
|
1820
1820
|
cacheDirectory: path.join(distDir, 'cache', 'webpack'),
|
|
1821
1821
|
// For production builds, it's more efficient to compress all cache files together instead of compression each one individually.
|
|
1822
1822
|
// So we disable compression here and allow the build runner to take care of compressing the cache as a whole.
|
|
@@ -1872,7 +1872,7 @@ export default async function getBaseWebpackConfig(dir, { buildId, encryptionKey
|
|
|
1872
1872
|
type: 'filesystem',
|
|
1873
1873
|
directory: cache.cacheDirectory
|
|
1874
1874
|
},
|
|
1875
|
-
version: `${__dirname}|${"16.1.1-canary.
|
|
1875
|
+
version: `${__dirname}|${"16.1.1-canary.33"}|${configVars}`
|
|
1876
1876
|
};
|
|
1877
1877
|
}
|
|
1878
1878
|
if (process.env.NEXT_WEBPACK_LOGGING) {
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* - next/script with `beforeInteractive` strategy
|
|
6
6
|
*/ import { getAssetPrefix } from './asset-prefix';
|
|
7
7
|
import { setAttributesFromProps } from './set-attributes-from-props';
|
|
8
|
-
const version = "16.1.1-canary.
|
|
8
|
+
const version = "16.1.1-canary.33";
|
|
9
9
|
window.next = {
|
|
10
10
|
version,
|
|
11
11
|
appDir: true
|
package/dist/esm/client/index.js
CHANGED
|
@@ -25,7 +25,7 @@ import { SearchParamsContext, PathParamsContext } from '../shared/lib/hooks-clie
|
|
|
25
25
|
import { onRecoverableError } from './react-client-callbacks/on-recoverable-error';
|
|
26
26
|
import tracer from './tracing/tracer';
|
|
27
27
|
import { isNextRouterError } from './components/is-next-router-error';
|
|
28
|
-
export const version = "16.1.1-canary.
|
|
28
|
+
export const version = "16.1.1-canary.33";
|
|
29
29
|
export let router;
|
|
30
30
|
export const emitter = mitt();
|
|
31
31
|
const looseToArray = (input)=>[].slice.call(input);
|
|
@@ -97,7 +97,7 @@ export async function createHotReloaderTurbopack(opts, serverFields, distDir, re
|
|
|
97
97
|
}
|
|
98
98
|
const hasRewrites = opts.fsChecker.rewrites.afterFiles.length > 0 || opts.fsChecker.rewrites.beforeFiles.length > 0 || opts.fsChecker.rewrites.fallback.length > 0;
|
|
99
99
|
const hotReloaderSpan = trace('hot-reloader', undefined, {
|
|
100
|
-
version: "16.1.1-canary.
|
|
100
|
+
version: "16.1.1-canary.33"
|
|
101
101
|
});
|
|
102
102
|
// Ensure the hotReloaderSpan is flushed immediately as it's the parentSpan for all processing
|
|
103
103
|
// of the current `next dev` invocation.
|
|
@@ -165,7 +165,7 @@ export default class HotReloaderWebpack {
|
|
|
165
165
|
this.previewProps = previewProps;
|
|
166
166
|
this.rewrites = rewrites;
|
|
167
167
|
this.hotReloaderSpan = trace('hot-reloader', undefined, {
|
|
168
|
-
version: "16.1.1-canary.
|
|
168
|
+
version: "16.1.1-canary.33"
|
|
169
169
|
});
|
|
170
170
|
// Ensure the hotReloaderSpan is flushed immediately as it's the parentSpan for all processing
|
|
171
171
|
// of the current `next dev` invocation.
|
|
@@ -21,7 +21,7 @@ import { experimentalSchema } from '../config-schema';
|
|
|
21
21
|
if (parts.length > 0) {
|
|
22
22
|
versionSuffix = ` (${parts.join(', ')})`;
|
|
23
23
|
}
|
|
24
|
-
Log.bootstrap(`${bold(purple(`${Log.prefixes.ready} Next.js ${"16.1.1-canary.
|
|
24
|
+
Log.bootstrap(`${bold(purple(`${Log.prefixes.ready} Next.js ${"16.1.1-canary.33"}`))}${versionSuffix}`);
|
|
25
25
|
if (appUrl) {
|
|
26
26
|
Log.bootstrap(`- Local: ${appUrl}`);
|
|
27
27
|
}
|
|
@@ -109,7 +109,7 @@ export async function getRequestHandlers({ dir, port, isDev, onDevServerCleanup,
|
|
|
109
109
|
export async function startServer(serverOptions) {
|
|
110
110
|
const { dir, isDev, hostname, minimalMode, allowRetry, keepAliveTimeout, selfSignedCertificate } = serverOptions;
|
|
111
111
|
let { port } = serverOptions;
|
|
112
|
-
process.title = `next-server (v${"16.1.1-canary.
|
|
112
|
+
process.title = `next-server (v${"16.1.1-canary.33"})`;
|
|
113
113
|
let handlersReady = ()=>{};
|
|
114
114
|
let handlersError = ()=>{};
|
|
115
115
|
let handlersPromise = new Promise((resolve, reject)=>{
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export function isStableBuild() {
|
|
2
|
-
return !"16.1.1-canary.
|
|
2
|
+
return !"16.1.1-canary.33"?.includes('canary') && !process.env.__NEXT_TEST_MODE && !process.env.NEXT_PRIVATE_LOCAL_DEV;
|
|
3
3
|
}
|
|
4
4
|
export class CanaryOnlyConfigError extends Error {
|
|
5
5
|
constructor(arg){
|
|
@@ -153,7 +153,7 @@ async function createHotReloaderTurbopack(opts, serverFields, distDir, resetFetc
|
|
|
153
153
|
}
|
|
154
154
|
const hasRewrites = opts.fsChecker.rewrites.afterFiles.length > 0 || opts.fsChecker.rewrites.beforeFiles.length > 0 || opts.fsChecker.rewrites.fallback.length > 0;
|
|
155
155
|
const hotReloaderSpan = (0, _trace.trace)('hot-reloader', undefined, {
|
|
156
|
-
version: "16.1.1-canary.
|
|
156
|
+
version: "16.1.1-canary.33"
|
|
157
157
|
});
|
|
158
158
|
// Ensure the hotReloaderSpan is flushed immediately as it's the parentSpan for all processing
|
|
159
159
|
// of the current `next dev` invocation.
|
|
@@ -233,7 +233,7 @@ class HotReloaderWebpack {
|
|
|
233
233
|
this.previewProps = previewProps;
|
|
234
234
|
this.rewrites = rewrites;
|
|
235
235
|
this.hotReloaderSpan = (0, _trace.trace)('hot-reloader', undefined, {
|
|
236
|
-
version: "16.1.1-canary.
|
|
236
|
+
version: "16.1.1-canary.33"
|
|
237
237
|
});
|
|
238
238
|
// Ensure the hotReloaderSpan is flushed immediately as it's the parentSpan for all processing
|
|
239
239
|
// of the current `next dev` invocation.
|
|
@@ -85,7 +85,7 @@ function logStartInfo({ networkUrl, appUrl, envInfo, logBundler }) {
|
|
|
85
85
|
if (parts.length > 0) {
|
|
86
86
|
versionSuffix = ` (${parts.join(', ')})`;
|
|
87
87
|
}
|
|
88
|
-
_log.bootstrap(`${(0, _picocolors.bold)((0, _picocolors.purple)(`${_log.prefixes.ready} Next.js ${"16.1.1-canary.
|
|
88
|
+
_log.bootstrap(`${(0, _picocolors.bold)((0, _picocolors.purple)(`${_log.prefixes.ready} Next.js ${"16.1.1-canary.33"}`))}${versionSuffix}`);
|
|
89
89
|
if (appUrl) {
|
|
90
90
|
_log.bootstrap(`- Local: ${appUrl}`);
|
|
91
91
|
}
|
|
@@ -177,7 +177,7 @@ async function getRequestHandlers({ dir, port, isDev, onDevServerCleanup, server
|
|
|
177
177
|
async function startServer(serverOptions) {
|
|
178
178
|
const { dir, isDev, hostname, minimalMode, allowRetry, keepAliveTimeout, selfSignedCertificate } = serverOptions;
|
|
179
179
|
let { port } = serverOptions;
|
|
180
|
-
process.title = `next-server (v${"16.1.1-canary.
|
|
180
|
+
process.title = `next-server (v${"16.1.1-canary.33"})`;
|
|
181
181
|
let handlersReady = ()=>{};
|
|
182
182
|
let handlersError = ()=>{};
|
|
183
183
|
let handlersPromise = new Promise((resolve, reject)=>{
|
|
@@ -21,7 +21,7 @@ _export(exports, {
|
|
|
21
21
|
}
|
|
22
22
|
});
|
|
23
23
|
function isStableBuild() {
|
|
24
|
-
return !"16.1.1-canary.
|
|
24
|
+
return !"16.1.1-canary.33"?.includes('canary') && !process.env.__NEXT_TEST_MODE && !process.env.NEXT_PRIVATE_LOCAL_DEV;
|
|
25
25
|
}
|
|
26
26
|
class CanaryOnlyConfigError extends Error {
|
|
27
27
|
constructor(arg){
|
|
@@ -11,11 +11,11 @@ Object.defineProperty(exports, "eventCliSessionStopped", {
|
|
|
11
11
|
const EVENT_VERSION = 'NEXT_CLI_SESSION_STOPPED';
|
|
12
12
|
function eventCliSessionStopped(event) {
|
|
13
13
|
// This should be an invariant, if it fails our build tooling is broken.
|
|
14
|
-
if (typeof "16.1.1-canary.
|
|
14
|
+
if (typeof "16.1.1-canary.33" !== 'string') {
|
|
15
15
|
return [];
|
|
16
16
|
}
|
|
17
17
|
const payload = {
|
|
18
|
-
nextVersion: "16.1.1-canary.
|
|
18
|
+
nextVersion: "16.1.1-canary.33",
|
|
19
19
|
nodeVersion: process.version,
|
|
20
20
|
cliCommand: event.cliCommand,
|
|
21
21
|
durationMilliseconds: event.durationMilliseconds,
|
|
@@ -12,12 +12,12 @@ const EVENT_VERSION = 'NEXT_CLI_SESSION_STARTED';
|
|
|
12
12
|
function eventCliSession(nextConfig, event) {
|
|
13
13
|
var _nextConfig_experimental_staleTimes, _nextConfig_experimental_staleTimes1, _nextConfig_reactCompiler, _nextConfig_reactCompiler1;
|
|
14
14
|
// This should be an invariant, if it fails our build tooling is broken.
|
|
15
|
-
if (typeof "16.1.1-canary.
|
|
15
|
+
if (typeof "16.1.1-canary.33" !== 'string') {
|
|
16
16
|
return [];
|
|
17
17
|
}
|
|
18
18
|
const { images, i18n } = nextConfig || {};
|
|
19
19
|
const payload = {
|
|
20
|
-
nextVersion: "16.1.1-canary.
|
|
20
|
+
nextVersion: "16.1.1-canary.33",
|
|
21
21
|
nodeVersion: process.version,
|
|
22
22
|
cliCommand: event.cliCommand,
|
|
23
23
|
isSrcDir: event.isSrcDir,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "next",
|
|
3
|
-
"version": "16.1.1-canary.
|
|
3
|
+
"version": "16.1.1-canary.33",
|
|
4
4
|
"description": "The React Framework",
|
|
5
5
|
"main": "./dist/server/next.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
]
|
|
98
98
|
},
|
|
99
99
|
"dependencies": {
|
|
100
|
-
"@next/env": "16.1.1-canary.
|
|
100
|
+
"@next/env": "16.1.1-canary.33",
|
|
101
101
|
"@swc/helpers": "0.5.15",
|
|
102
102
|
"baseline-browser-mapping": "^2.8.3",
|
|
103
103
|
"caniuse-lite": "^1.0.30001579",
|
|
@@ -128,14 +128,14 @@
|
|
|
128
128
|
},
|
|
129
129
|
"optionalDependencies": {
|
|
130
130
|
"sharp": "^0.34.5",
|
|
131
|
-
"@next/swc-darwin-arm64": "16.1.1-canary.
|
|
132
|
-
"@next/swc-darwin-x64": "16.1.1-canary.
|
|
133
|
-
"@next/swc-linux-arm64-gnu": "16.1.1-canary.
|
|
134
|
-
"@next/swc-linux-arm64-musl": "16.1.1-canary.
|
|
135
|
-
"@next/swc-linux-x64-gnu": "16.1.1-canary.
|
|
136
|
-
"@next/swc-linux-x64-musl": "16.1.1-canary.
|
|
137
|
-
"@next/swc-win32-arm64-msvc": "16.1.1-canary.
|
|
138
|
-
"@next/swc-win32-x64-msvc": "16.1.1-canary.
|
|
131
|
+
"@next/swc-darwin-arm64": "16.1.1-canary.33",
|
|
132
|
+
"@next/swc-darwin-x64": "16.1.1-canary.33",
|
|
133
|
+
"@next/swc-linux-arm64-gnu": "16.1.1-canary.33",
|
|
134
|
+
"@next/swc-linux-arm64-musl": "16.1.1-canary.33",
|
|
135
|
+
"@next/swc-linux-x64-gnu": "16.1.1-canary.33",
|
|
136
|
+
"@next/swc-linux-x64-musl": "16.1.1-canary.33",
|
|
137
|
+
"@next/swc-win32-arm64-msvc": "16.1.1-canary.33",
|
|
138
|
+
"@next/swc-win32-x64-msvc": "16.1.1-canary.33"
|
|
139
139
|
},
|
|
140
140
|
"devDependencies": {
|
|
141
141
|
"@babel/code-frame": "7.26.2",
|
|
@@ -170,11 +170,11 @@
|
|
|
170
170
|
"@modelcontextprotocol/sdk": "1.18.1",
|
|
171
171
|
"@mswjs/interceptors": "0.23.0",
|
|
172
172
|
"@napi-rs/triples": "1.2.0",
|
|
173
|
-
"@next/font": "16.1.1-canary.
|
|
174
|
-
"@next/polyfill-module": "16.1.1-canary.
|
|
175
|
-
"@next/polyfill-nomodule": "16.1.1-canary.
|
|
176
|
-
"@next/react-refresh-utils": "16.1.1-canary.
|
|
177
|
-
"@next/swc": "16.1.1-canary.
|
|
173
|
+
"@next/font": "16.1.1-canary.33",
|
|
174
|
+
"@next/polyfill-module": "16.1.1-canary.33",
|
|
175
|
+
"@next/polyfill-nomodule": "16.1.1-canary.33",
|
|
176
|
+
"@next/react-refresh-utils": "16.1.1-canary.33",
|
|
177
|
+
"@next/swc": "16.1.1-canary.33",
|
|
178
178
|
"@opentelemetry/api": "1.6.0",
|
|
179
179
|
"@playwright/test": "1.51.1",
|
|
180
180
|
"@rspack/core": "1.6.7",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|