next 16.1.1-canary.20 → 16.1.1-canary.21
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/{fW6zJ6FNBXVSANaipPTKG → wgvrCn_Fjv31lH3ZYZfMT}/_buildManifest.js +0 -0
- /package/dist/bundle-analyzer/_next/static/{fW6zJ6FNBXVSANaipPTKG → wgvrCn_Fjv31lH3ZYZfMT}/_clientMiddlewareManifest.json +0 -0
- /package/dist/bundle-analyzer/_next/static/{fW6zJ6FNBXVSANaipPTKG → wgvrCn_Fjv31lH3ZYZfMT}/_ssgManifest.js +0 -0
package/dist/.build-commit
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
2df811a2461a0bd30d76cafac18455c2bca06346
|
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.21"}`, '-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.21" || '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
|
@@ -379,7 +379,7 @@ async function build(dir, experimentalAnalyze = false, reactProductionProfiling
|
|
|
379
379
|
try {
|
|
380
380
|
const nextBuildSpan = (0, _trace.trace)('next-build', undefined, {
|
|
381
381
|
buildMode: experimentalBuildMode,
|
|
382
|
-
version: "16.1.1-canary.
|
|
382
|
+
version: "16.1.1-canary.21"
|
|
383
383
|
});
|
|
384
384
|
_buildcontext.NextBuildContext.nextBuildSpan = nextBuildSpan;
|
|
385
385
|
_buildcontext.NextBuildContext.dir = dir;
|
|
@@ -879,7 +879,7 @@ async function build(dir, experimentalAnalyze = false, reactProductionProfiling
|
|
|
879
879
|
// Files outside of the distDir can be "type": "module"
|
|
880
880
|
await writeFileUtf8(_path.default.join(distDir, 'package.json'), '{"type": "commonjs"}');
|
|
881
881
|
// These are written to distDir, so they need to come after creating and cleaning distDr.
|
|
882
|
-
await (0, _builddiagnostics.recordFrameworkVersion)("16.1.1-canary.
|
|
882
|
+
await (0, _builddiagnostics.recordFrameworkVersion)("16.1.1-canary.21");
|
|
883
883
|
await (0, _builddiagnostics.updateBuildDiagnostics)({
|
|
884
884
|
buildStage: 'start'
|
|
885
885
|
});
|
|
@@ -2560,7 +2560,7 @@ async function build(dir, experimentalAnalyze = false, reactProductionProfiling
|
|
|
2560
2560
|
configOutDir: _path.default.join(dir, configOutDir),
|
|
2561
2561
|
staticPages,
|
|
2562
2562
|
serverPropsPages,
|
|
2563
|
-
nextVersion: "16.1.1-canary.
|
|
2563
|
+
nextVersion: "16.1.1-canary.21",
|
|
2564
2564
|
tracingRoot: outputFileTracingRoot,
|
|
2565
2565
|
hasNodeMiddleware,
|
|
2566
2566
|
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.21";
|
|
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.21",
|
|
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.21"}|${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.21"}|${configVars}`
|
|
1979
1979
|
};
|
|
1980
1980
|
}
|
|
1981
1981
|
if (process.env.NEXT_WEBPACK_LOGGING) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--wgvrCn_Fjv31lH3ZYZfMT--><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/3e0957f7eff8d345.js"/><script src="/_next/static/chunks/bf256f63a0329899.js" async=""></script><script src="/_next/static/chunks/a45bbe9740e76b08.js" async=""></script><script src="/_next/static/chunks/turbopack-00bd4f7eb3194bc7.js" async=""></script><script src="/_next/static/chunks/d4897d048d586310.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/3e0957f7eff8d345.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[57952,[\"/_next/static/chunks/d4897d048d586310.js\"],\"default\"]\n3:I[62727,[\"/_next/static/chunks/d4897d048d586310.js\"],\"default\"]\n4:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"ViewportBoundary\"]\n9:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"MetadataBoundary\"]\nb:I[36062,[\"/_next/static/chunks/d4897d048d586310.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/3e0957f7eff8d345.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[57952,[\"/_next/static/chunks/d4897d048d586310.js\"],\"default\"]\n3:I[62727,[\"/_next/static/chunks/d4897d048d586310.js\"],\"default\"]\n4:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"ViewportBoundary\"]\n9:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"MetadataBoundary\"]\nb:I[36062,[\"/_next/static/chunks/d4897d048d586310.js\"],\"default\"]\n:HL[\"/_next/static/chunks/adecd0ef71a11c8f.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"wgvrCn_Fjv31lH3ZYZfMT\",\"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/d4897d048d586310.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/8d91f8a9573cc0bb.js"],"default"]
|
|
4
4
|
6:I[97372,["/_next/static/chunks/d4897d048d586310.js"],"OutletBoundary"]
|
|
5
5
|
7:"$Sreact.suspense"
|
|
6
|
-
0:{"buildId":"
|
|
6
|
+
0:{"buildId":"wgvrCn_Fjv31lH3ZYZfMT","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/8d91f8a9573cc0bb.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[97372,["/_next/static/chunks/d4897d048d586310.js"],"ViewportBoundary"]
|
|
|
9
9
|
d:I[97372,["/_next/static/chunks/d4897d048d586310.js"],"MetadataBoundary"]
|
|
10
10
|
f:I[36062,["/_next/static/chunks/d4897d048d586310.js"],"default"]
|
|
11
11
|
:HL["/_next/static/chunks/adecd0ef71a11c8f.css","style"]
|
|
12
|
-
0:{"P":null,"b":"
|
|
12
|
+
0:{"P":null,"b":"wgvrCn_Fjv31lH3ZYZfMT","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/8d91f8a9573cc0bb.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[97372,["/_next/static/chunks/d4897d048d586310.js"],"ViewportBoundary"]
|
|
3
3
|
4:I[97372,["/_next/static/chunks/d4897d048d586310.js"],"MetadataBoundary"]
|
|
4
4
|
5:"$Sreact.suspense"
|
|
5
|
-
0:{"buildId":"
|
|
5
|
+
0:{"buildId":"wgvrCn_Fjv31lH3ZYZfMT","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[57952,["/_next/static/chunks/d4897d048d586310.js"],"default"]
|
|
3
3
|
3:I[62727,["/_next/static/chunks/d4897d048d586310.js"],"default"]
|
|
4
4
|
:HL["/_next/static/chunks/adecd0ef71a11c8f.css","style"]
|
|
5
|
-
0:{"buildId":"
|
|
5
|
+
0:{"buildId":"wgvrCn_Fjv31lH3ZYZfMT","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":"wgvrCn_Fjv31lH3ZYZfMT","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[97372,["/_next/static/chunks/d4897d048d586310.js"],"MetadataBoundary"]
|
|
8
8
|
b:I[36062,["/_next/static/chunks/d4897d048d586310.js"],"default"]
|
|
9
9
|
:HL["/_next/static/chunks/adecd0ef71a11c8f.css","style"]
|
|
10
|
-
0:{"P":null,"b":"
|
|
10
|
+
0:{"P":null,"b":"wgvrCn_Fjv31lH3ZYZfMT","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/d4897d048d586310.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[97372,["/_next/static/chunks/d4897d048d586310.js"],"ViewportBoundary"]
|
|
3
3
|
4:I[97372,["/_next/static/chunks/d4897d048d586310.js"],"MetadataBoundary"]
|
|
4
4
|
5:"$Sreact.suspense"
|
|
5
|
-
0:{"buildId":"
|
|
5
|
+
0:{"buildId":"wgvrCn_Fjv31lH3ZYZfMT","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[57952,["/_next/static/chunks/d4897d048d586310.js"],"default"]
|
|
3
3
|
3:I[62727,["/_next/static/chunks/d4897d048d586310.js"],"default"]
|
|
4
4
|
:HL["/_next/static/chunks/adecd0ef71a11c8f.css","style"]
|
|
5
|
-
0:{"buildId":"
|
|
5
|
+
0:{"buildId":"wgvrCn_Fjv31lH3ZYZfMT","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/adecd0ef71a11c8f.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d4897d048d586310.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[97372,["/_next/static/chunks/d4897d048d586310.js"],"OutletBoundary"]
|
|
3
3
|
3:"$Sreact.suspense"
|
|
4
|
-
0:{"buildId":"
|
|
4
|
+
0:{"buildId":"wgvrCn_Fjv31lH3ZYZfMT","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[57952,["/_next/static/chunks/d4897d048d586310.js"],"default"]
|
|
3
3
|
3:I[62727,["/_next/static/chunks/d4897d048d586310.js"],"default"]
|
|
4
|
-
0:{"buildId":"
|
|
4
|
+
0:{"buildId":"wgvrCn_Fjv31lH3ZYZfMT","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":"wgvrCn_Fjv31lH3ZYZfMT","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><!--wgvrCn_Fjv31lH3ZYZfMT--><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/3e0957f7eff8d345.js"/><script src="/_next/static/chunks/bf256f63a0329899.js" async=""></script><script src="/_next/static/chunks/a45bbe9740e76b08.js" async=""></script><script src="/_next/static/chunks/turbopack-00bd4f7eb3194bc7.js" async=""></script><script src="/_next/static/chunks/d4897d048d586310.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/3e0957f7eff8d345.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[57952,[\"/_next/static/chunks/d4897d048d586310.js\"],\"default\"]\n3:I[62727,[\"/_next/static/chunks/d4897d048d586310.js\"],\"default\"]\n4:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"ViewportBoundary\"]\n9:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"MetadataBoundary\"]\nb:I[36062,[\"/_next/static/chunks/d4897d048d586310.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/3e0957f7eff8d345.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[57952,[\"/_next/static/chunks/d4897d048d586310.js\"],\"default\"]\n3:I[62727,[\"/_next/static/chunks/d4897d048d586310.js\"],\"default\"]\n4:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"ViewportBoundary\"]\n9:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"MetadataBoundary\"]\nb:I[36062,[\"/_next/static/chunks/d4897d048d586310.js\"],\"default\"]\n:HL[\"/_next/static/chunks/adecd0ef71a11c8f.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"wgvrCn_Fjv31lH3ZYZfMT\",\"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/d4897d048d586310.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[97372,["/_next/static/chunks/d4897d048d586310.js"],"MetadataBoundary"]
|
|
8
8
|
b:I[36062,["/_next/static/chunks/d4897d048d586310.js"],"default"]
|
|
9
9
|
:HL["/_next/static/chunks/adecd0ef71a11c8f.css","style"]
|
|
10
|
-
0:{"P":null,"b":"
|
|
10
|
+
0:{"P":null,"b":"wgvrCn_Fjv31lH3ZYZfMT","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/d4897d048d586310.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><!--wgvrCn_Fjv31lH3ZYZfMT--><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/3e0957f7eff8d345.js"/><script src="/_next/static/chunks/bf256f63a0329899.js" async=""></script><script src="/_next/static/chunks/a45bbe9740e76b08.js" async=""></script><script src="/_next/static/chunks/turbopack-00bd4f7eb3194bc7.js" async=""></script><script src="/_next/static/chunks/d4897d048d586310.js" async=""></script><script src="/_next/static/chunks/8d91f8a9573cc0bb.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/3e0957f7eff8d345.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[57952,[\"/_next/static/chunks/d4897d048d586310.js\"],\"default\"]\n3:I[62727,[\"/_next/static/chunks/d4897d048d586310.js\"],\"default\"]\n4:I[94789,[\"/_next/static/chunks/d4897d048d586310.js\"],\"ClientPageRoot\"]\n5:I[79331,[\"/_next/static/chunks/8d91f8a9573cc0bb.js\"],\"default\"]\n8:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"OutletBoundary\"]\n9:\"$Sreact.suspense\"\nb:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"ViewportBoundary\"]\nd:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"MetadataBoundary\"]\nf:I[36062,[\"/_next/static/chunks/d4897d048d586310.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/3e0957f7eff8d345.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[57952,[\"/_next/static/chunks/d4897d048d586310.js\"],\"default\"]\n3:I[62727,[\"/_next/static/chunks/d4897d048d586310.js\"],\"default\"]\n4:I[94789,[\"/_next/static/chunks/d4897d048d586310.js\"],\"ClientPageRoot\"]\n5:I[79331,[\"/_next/static/chunks/8d91f8a9573cc0bb.js\"],\"default\"]\n8:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"OutletBoundary\"]\n9:\"$Sreact.suspense\"\nb:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"ViewportBoundary\"]\nd:I[97372,[\"/_next/static/chunks/d4897d048d586310.js\"],\"MetadataBoundary\"]\nf:I[36062,[\"/_next/static/chunks/d4897d048d586310.js\"],\"default\"]\n:HL[\"/_next/static/chunks/adecd0ef71a11c8f.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"wgvrCn_Fjv31lH3ZYZfMT\",\"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/8d91f8a9573cc0bb.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[97372,["/_next/static/chunks/d4897d048d586310.js"],"ViewportBoundary"]
|
|
|
9
9
|
d:I[97372,["/_next/static/chunks/d4897d048d586310.js"],"MetadataBoundary"]
|
|
10
10
|
f:I[36062,["/_next/static/chunks/d4897d048d586310.js"],"default"]
|
|
11
11
|
:HL["/_next/static/chunks/adecd0ef71a11c8f.css","style"]
|
|
12
|
-
0:{"P":null,"b":"
|
|
12
|
+
0:{"P":null,"b":"wgvrCn_Fjv31lH3ZYZfMT","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/8d91f8a9573cc0bb.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.21";
|
|
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.21";
|
|
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");r("../../node_modules/.pnpm/react@19.3.0-canary-65eec428-20251218/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 ej(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)}function eA(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})}ej(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})}ej(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 eD="`Math.random()`";try{let e=Math.random;Math.random=(function(){return eA(eD,"random"),e.apply(null,arguments)}).bind(null),Object.defineProperty(Math.random,"name",{value:"random"})}catch{console.error(`Failed to install ${eD} 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 eA("`Date.now()`","time"),b()}})["now".slice()].bind(null)),t=Reflect.apply,r=Reflect.construct,n=Object.defineProperties(function(){return new.target===void 0?(eA("`Date()`","time"),t(v,void 0,arguments)):(0==arguments.length&&eA("`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 e$="`crypto.getRandomValues()`";try{let e=m.getRandomValues;m.getRandomValues=function(){return eA(e$,"crypto"),e.apply(m,arguments)}}catch{console.error(`Failed to install ${e$} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}try{let e=m.randomUUID;m.randomUUID=function(){return eA("`crypto.randomUUID()`","crypto"),e.apply(m,arguments)}}catch{console.error(`Failed to install ${e$} 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 eA(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]&&eA(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 eA(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]&&eA("`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 eA(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 eA(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 eA(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 ek=r("path"),eI=r("module"),eM=eI.prototype.require,eL=eI._resolveFilename,eq=require.resolve,eH=new Map;!function(e=[]){for(let[t,r]of e)eH.set(t,r)}(Object.entries({"styled-jsx":ek.dirname(eq("styled-jsx/package.json")),"styled-jsx/style":eq("styled-jsx/style"),"styled-jsx/style.js":eq("styled-jsx/style")}).map(([e,t])=>[e,eq(t)])),eI._resolveFilename=(function(e,t,r,n,i,s){let a=t.get(r);return a&&(r=a),e.call(eI,r,n,i,s)}).bind(null,eL,eH),eI.prototype.require=function(e){return e.endsWith(".shared-runtime")?eM.call(this,`next/dist/server/route-modules/pages/vendored/contexts/${ek.basename(e,".shared-runtime")}`):eM.call(this,e)},r("./dist/esm/server/node-polyfill-crypto.js"),"undefined"!=typeof performance&&["mark","measure","getEntriesByName"].every(e=>"function"==typeof performance[e]);class eF extends Error{}class ez extends Error{}class eU extends Error{constructor(e){super(),this.code="ENOENT",this.name="PageNotFoundError",this.message=`Cannot find module for page: ${e}`}}class eX extends Error{constructor(e,t){super(),this.message=`Failed to load static file for page: ${e} ${t}`}}var eW=r("./dist/compiled/path-to-regexp/index.js");let eB="_NEXTSEP_";function eG(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 eV(e){let t=e;return(t=t.replace(/(\([^)]*\)):([^/\s]+)/g,`$1${eB}:$2`)).replace(/:([^:/\s)]+)(?=:)/g,`:$1${eB}`)}function eK(e){return e.replace(RegExp(`\\)${eB}`,"g"),")")}function eY(e,t,r){if("string"!=typeof e)return(0,eW.pathToRegexp)(e,t,r);let n=eG(e),i=n?eV(e):e;try{return(0,eW.pathToRegexp)(i,t,r)}catch(i){if(!n)try{let n=eV(e);return(0,eW.pathToRegexp)(n,t,r)}catch(e){}throw i}}function eJ(e,t){let r=eG(e),n=r?eV(e):e;try{let e=(0,eW.compile)(n,t);if(r)return t=>eK(e(t));return e}catch(n){if(!r)try{let r=eV(e),n=(0,eW.compile)(r,t);return e=>eK(n(e))}catch(e){}throw n}}function eQ({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 eF("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(`^${eB}`),""):Array.isArray(r)?n[e]=r.map(e=>"string"==typeof e?e.replace(RegExp(`^${eB}`),""):e):n[e]=r;return n}}let eZ=Symbol.for("NextInternalRequestMeta");function e0(e,t){let r=e[eZ]||{};return"string"==typeof t?r[t]:r}function e1(e,t,r){let n=e0(e);return n[t]=r,e[eZ]=n,n}function e4(e,t){let r=e0(e);return delete r[t],e[eZ]=r,r}r("./dist/esm/shared/lib/modern-browserslist-target.js");let e2="/_not-found",e3=`${e2}/page`,e8="pages-manifest.json",e5="app-paths-manifest.json",e9="server";[...process?.features?.typescript?["next.config.mts"]:[]];let e6=["/_document","/_app","/_error"];Symbol("polyfills");let e7=["/500"];function te(e,t){let r=A().join(e,t);return ed().existsSync(r)||(r=A().join(e,"src",t),ed().existsSync(r))?r:null}class tt{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 tr extends Error{constructor(){super("Headers cannot be modified. Read more: https://nextjs.org/docs/app/api-reference/functions/headers")}static callable(){throw new tr}}class tn extends Headers{constructor(e){super(),this.headers=new Proxy(e,{get(t,r,n){if("symbol"==typeof r)return tt.get(t,r,n);let i=r.toLowerCase(),s=Object.keys(e).find(e=>e.toLowerCase()===i);if(void 0!==s)return tt.get(t,s,n)},set(t,r,n,i){if("symbol"==typeof r)return tt.set(t,r,n,i);let s=r.toLowerCase(),a=Object.keys(e).find(e=>e.toLowerCase()===s);return tt.set(t,a??r,n,i)},has(t,r){if("symbol"==typeof r)return tt.has(t,r);let n=r.toLowerCase(),i=Object.keys(e).find(e=>e.toLowerCase()===n);return void 0!==i&&tt.has(t,i)},deleteProperty(t,r){if("symbol"==typeof r)return tt.deleteProperty(t,r);let n=r.toLowerCase(),i=Object.keys(e).find(e=>e.toLowerCase()===n);return void 0===i||tt.deleteProperty(t,i)}})}static seal(e){return new Proxy(e,{get(e,t,r){switch(t){case"append":case"delete":case"set":return tr.callable;default:return tt.get(e,t,r)}}})}merge(e){return Array.isArray(e)?e.join(", "):e}static from(e){return e instanceof Headers?e:new tn(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 ti="text/html; charset=utf-8",ts="nxtP",ta="nxtI",to="x-matched-path",tl=".segments",tc=".segment.rsc",tu=".rsc",td=".json",th=".meta",tp="x-next-cache-tags",tf="x-next-revalidated-tags",tm={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"};({...tm,GROUP:{builtinReact:[tm.reactServerComponents,tm.actionBrowser],serverOnly:[tm.reactServerComponents,tm.actionBrowser,tm.instrument,tm.middleware],neutralTarget:[tm.apiNode,tm.apiEdge],clientOnly:[tm.serverSideRendering,tm.appPagesBrowser],bundled:[tm.reactServerComponents,tm.actionBrowser,tm.serverSideRendering,tm.appPagesBrowser,tm.shared,tm.instrument,tm.middleware],appPages:[tm.reactServerComponents,tm.serverSideRendering,tm.appPagesBrowser,tm.actionBrowser]}});let tg=require("next/dist/server/lib/trace/tracer");var ty=((E=ty||{}).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),tv=((_=tv||{}).loadDefaultErrorComponents="LoadComponents.loadDefaultErrorComponents",_.loadComponents="LoadComponents.loadComponents",_),tb=((x=tb||{}).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 tE=Symbol("__prerender_bypass");var t_=((w={})[w.SeeOther=303]="SeeOther",w[w.TemporaryRedirect=307]="TemporaryRedirect",w[w.PermanentRedirect=308]="PermanentRedirect",w);function tx(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 tw{constructor(e,t,r){this.method=e,this.url=t,this.body=r}get cookies(){return this._cookies?this._cookies:this._cookies=tx(this.headers)()}}class tR{constructor(e){this.destination=e}redirect(e,t){return this.setHeader("Location",e),this.statusCode=t,t===t_.PermanentRedirect&&this.setHeader("Refresh",`0;url=${e}`),this}}class tC extends tw{static #e=T=eZ;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[eZ]||{},this.streaming=!1}get originalRequest(){return this._req[eZ]=this[eZ],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 tP extends tR{get originalResponse(){return tE in this&&(this._res[tE]=this[tE]),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 tO=r("./dist/compiled/fresh/index.js"),tT=r.n(tO);async function tS({req:e,res:t,result:r,generateEtags:n,poweredByHeader:i,cacheControl:s,cdnCacheControlHeader:a}){let o;if(t.finished||t.headersSent)return;i&&r.contentType===ti&&t.setHeader("X-Powered-By","Next.js"),s&&!t.getHeader("Cache-Control")&&(o=function({revalidate:e,expire:t}){let r="number"==typeof e&&void 0!==t&&e<t?`, stale-while-revalidate=${t-e}`:"";if(0===e)return{"Cache-Control":"private, no-cache, no-store, max-age=0, must-revalidate"};let n="number"==typeof e?e:31536e3,i=`max-age=${n}${r}`;return{"Cache-Control":`s-maxage=${n}`,cdnCacheControl:i}}(s),t.setHeader("Cache-Control",o["Cache-Control"]),o.cdnCacheControl&&t.setHeader(a??"CDN-Cache-Control",o.cdnCacheControl));let l=r.isDynamic?null:r.toUnchunkedString();if(n&&null!==l){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)+'"')(l);if(r&&t.setHeader("ETag",r),tT()(e.headers,{etag:r})&&(t.statusCode=304,t.end(),1))return}(!t.getHeader("Content-Type")&&r.contentType&&t.setHeader("Content-Type",r.contentType),l&&t.setHeader("Content-Length",Buffer.byteLength(l)),"HEAD"===e.method)?t.end(null):null!==l?t.end(l):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 tj(e){return"string"==typeof e?e:("number"!=typeof e||isNaN(e))&&"boolean"!=typeof e?"":String(e)}function tA(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 tD={wait:es(Q("○")),error:et(Q("⨯")),warn:en(Q("⚠")),ready:"▲",info:es(Q(" ")),event:er(Q("✓")),trace:ei(Q("\xbb"))},t$={log:"log",warn:"warn",error:"error"};function tk(e,...t){(""===t[0]||void 0===t[0])&&1===t.length&&t.shift();let r=e in t$?t$[e]:"log",n=tD[e];0===t.length?console[r](""):1===t.length&&"string"==typeof t[0]?console[r](n+" "+t[0]):console[r](n,...t)}function tI(e){console.log(e)}function tM(...e){tk("wait",...e)}function tL(...e){tk("error",...e)}function tq(...e){tk("warn",...e)}function tH(...e){tk("ready",...e)}function tF(...e){tk("info",...e)}function tz(...e){tk("event",...e)}function tU(...e){tk("trace",...e)}let tX=new M(1e4,e=>e.length);function tW(...e){let t=e.join(" ");tX.has(t)||(tX.set(t,t),tq(...e))}let tB=new M(1e4,e=>e.length);function tG(...e){let t=e.join(" ");tB.has(t)||(tB.set(t,t),tL(...e))}var tV=r("os"),tK=r.n(tV);let tY="100 MB";function tJ(e){let t=r("./dist/compiled/bytes/index.js").parse(e??tY);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:3e8,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,cdnCacheControlHeader:void 0,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)||(tK().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.20".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:!1,lockDistDir:!0,isolatedDevBuild:!0,proxyClientMaxBodySize:0xa00000,hideLogsAfterAbort:!1,mcpServer:!0,turbopackFileSystemCacheForDev:!0,turbopackFileSystemCacheForBuild:!1,turbopackInferModuleSideEffects:!0,devCacheControlNoCache:!1},htmlLimitedBots:void 0,bundlePagesRouterDependencies:!1});let tQ="(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])",tZ=`(${tQ}[.]){3}${tQ}`,t0="(?:[0-9a-fA-F]{1,4})",t1=RegExp(`^((?:${t0}:){7}(?:${t0}|:)|(?:${t0}:){6}(?:${tZ}|:${t0}|:)|(?:${t0}:){5}(?::${tZ}|(:${t0}){1,2}|:)|(?:${t0}:){4}(?:(:${t0}){0,1}:${tZ}|(:${t0}){1,3}|:)|(?:${t0}:){3}(?:(:${t0}){0,2}:${tZ}|(:${t0}){1,4}|:)|(?:${t0}:){2}(?:(:${t0}){0,3}:${tZ}|(:${t0}){1,5}|:)|(?:${t0}:){1}(?:(:${t0}){0,4}:${tZ}|(:${t0}){1,6}|:)|(?::((?::${t0}){0,5}:${tZ}|(?::${t0}){1,7}|:)))(%[0-9a-zA-Z-.:]{1,})?$`);function t4(e){return e.startsWith("/")?e:`/${e}`}function t2(e){return t4(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 t3(e){return e.replace(/\.rsc($|\?)/,"$1")}let t8=["(..)(..)","(.)","(..)","(...)"];function t5(e){return void 0!==e.split("/").find(e=>t8.find(t=>e.startsWith(t)))}let t9=/\/[^/]*\[[^/]+\][^/]*(?=\/|$)/,t6=/\/\[[^/]+\](?=\/|$)/;function t7(e,t=!0){return(t5(e)&&(e=function(e){let t,r,n;for(let i of e.split("/"))if(r=t8.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=t2(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)?t6.test(e):t9.test(e)}let re=/[\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,rt=/Googlebot(?!-)|Googlebot$/i,rr=re.source;function rn(){}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 ri=new TextEncoder;function rs(e){return new ReadableStream({start(t){t.enqueue(ri.encode(e)),t.close()}})}function ra(e){return new ReadableStream({start(t){t.enqueue(e),t.close()}})}async function ro(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 rl(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 rc(e){let t={},r=[];if(e)for(let[n,i]of e.entries())"set-cookie"===n.toLowerCase()?(r.push(...rl(i)),t[n]=1===r.length?r[0]:r):t[n]=i;return t}function ru(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 rd(e){for(let t of[ts,ta])if(e!==t&&e.startsWith(t))return e.substring(t.length);return null}function rh(e){return e.replace(/\/$/,"")||"/"}function rp(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 rf(e,t){if(!e.startsWith("/")||!t)return e;let{pathname:r,query:n,hash:i}=rp(e);return`${t}${r}${n}${i}`}function rm(e,t){if(!e.startsWith("/")||!t)return e;let{pathname:r,query:n,hash:i}=rp(e);return`${r}${t}${n}${i}`}function rg(e,t){if("string"!=typeof e)return!1;let{pathname:r}=rp(e);return r===t||r.startsWith(t+"/")}function ry(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 rv=new WeakMap;function rb(e,t){let r;if(!t)return{pathname:e};let n=rv.get(t);n||(n=t.map(e=>e.toLowerCase()),rv.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 rE(e,t){if(!rg(e,t))return e;let r=e.slice(t.length);return r.startsWith("/")?r:`/${r}`}function r_(e,t){let{basePath:r,i18n:n,trailingSlash:i}=t.nextConfig??{},s={pathname:e,trailingSlash:"/"!==e?e.endsWith("/"):i};r&&rg(s.pathname,r)&&(s.pathname=rE(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):rb(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):rb(a,n.locales)).detectedLocale&&(s.locale=e.detectedLocale)}return s}let rx=/(?!^https?:\/\/)(127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}|\[::1\]|localhost)/;function rw(e,t){return new URL(String(e).replace(rx,"localhost"),t&&String(t).replace(rx,"localhost"))}let rR=Symbol("NextURLInternal");class rC{constructor(e,t,r){let n,i;"object"==typeof t&&"pathname"in t||"string"==typeof t?(n=t,i=r||{}):i=r||t||{},this[rR]={url:rw(e,n??i.base),options:i,basePath:""},this.analyze()}analyze(){var e,t,r,n,i;let s=r_(this[rR].url.pathname,{nextConfig:this[rR].options.nextConfig,parseData:!process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE,i18nProvider:this[rR].options.i18nProvider}),a=ry(this[rR].url,this[rR].options.headers);this[rR].domainLocale=this[rR].options.i18nProvider?this[rR].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[rR].options.nextConfig)||null==(e=t.i18n)?void 0:e.domains,a);let o=(null==(r=this[rR].domainLocale)?void 0:r.defaultLocale)||(null==(i=this[rR].options.nextConfig)||null==(n=i.i18n)?void 0:n.defaultLocale);this[rR].url.pathname=s.pathname,this[rR].defaultLocale=o,this[rR].basePath=s.basePath??"",this[rR].buildId=s.buildId,this[rR].locale=s.locale??o,this[rR].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&&(rg(i,"/api")||rg(i,`/${t.toLowerCase()}`))?e:rf(e,`/${t}`)}((e={basePath:this[rR].basePath,buildId:this[rR].buildId,defaultLocale:this[rR].options.forceLocale?void 0:this[rR].defaultLocale,locale:this[rR].locale,pathname:this[rR].url.pathname,trailingSlash:this[rR].trailingSlash}).pathname,e.locale,e.buildId?void 0:e.defaultLocale,e.ignorePrefix),(e.buildId||!e.trailingSlash)&&(t=rh(t)),e.buildId&&(t=rm(rf(t,`/_next/data/${e.buildId}`),"/"===e.pathname?"index.json":".json")),t=rf(t,e.basePath),!e.buildId&&e.trailingSlash?t.endsWith("/")?t:rm(t,"/"):rh(t)}formatSearch(){return this[rR].url.search}get buildId(){return this[rR].buildId}set buildId(e){this[rR].buildId=e}get locale(){return this[rR].locale??""}set locale(e){var t,r;if(!this[rR].locale||!(null==(r=this[rR].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[rR].locale=e}get defaultLocale(){return this[rR].defaultLocale}get domainLocale(){return this[rR].domainLocale}get searchParams(){return this[rR].url.searchParams}get host(){return this[rR].url.host}set host(e){this[rR].url.host=e}get hostname(){return this[rR].url.hostname}set hostname(e){this[rR].url.hostname=e}get port(){return this[rR].url.port}set port(e){this[rR].url.port=e}get protocol(){return this[rR].url.protocol}set protocol(e){this[rR].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[rR].url=rw(e),this.analyze()}get origin(){return this[rR].url.origin}get pathname(){return this[rR].url.pathname}set pathname(e){this[rR].url.pathname=e}get hash(){return this[rR].url.hash}set hash(e){this[rR].url.hash=e}get search(){return this[rR].url.search}set search(e){this[rR].url.search=e}get password(){return this[rR].url.password}set password(e){this[rR].url.password=e}get username(){return this[rR].url.username}set username(e){this[rR].url.username=e}get basePath(){return this[rR].basePath}set basePath(e){this[rR].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 rC(String(this),this[rR].options)}}class rP 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");r("../../node_modules/.pnpm/react@19.3.0-canary-65eec428-20251218/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 ej(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)}function eA(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})}ej(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})}ej(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 eD="`Math.random()`";try{let e=Math.random;Math.random=(function(){return eA(eD,"random"),e.apply(null,arguments)}).bind(null),Object.defineProperty(Math.random,"name",{value:"random"})}catch{console.error(`Failed to install ${eD} 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 eA("`Date.now()`","time"),b()}})["now".slice()].bind(null)),t=Reflect.apply,r=Reflect.construct,n=Object.defineProperties(function(){return new.target===void 0?(eA("`Date()`","time"),t(v,void 0,arguments)):(0==arguments.length&&eA("`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 e$="`crypto.getRandomValues()`";try{let e=m.getRandomValues;m.getRandomValues=function(){return eA(e$,"crypto"),e.apply(m,arguments)}}catch{console.error(`Failed to install ${e$} extension. When using \`cacheComponents\` calling this function will not correctly trigger dynamic behavior.`)}try{let e=m.randomUUID;m.randomUUID=function(){return eA("`crypto.randomUUID()`","crypto"),e.apply(m,arguments)}}catch{console.error(`Failed to install ${e$} 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 eA(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]&&eA(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 eA(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]&&eA("`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 eA(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 eA(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 eA(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 ek=r("path"),eI=r("module"),eM=eI.prototype.require,eL=eI._resolveFilename,eq=require.resolve,eH=new Map;!function(e=[]){for(let[t,r]of e)eH.set(t,r)}(Object.entries({"styled-jsx":ek.dirname(eq("styled-jsx/package.json")),"styled-jsx/style":eq("styled-jsx/style"),"styled-jsx/style.js":eq("styled-jsx/style")}).map(([e,t])=>[e,eq(t)])),eI._resolveFilename=(function(e,t,r,n,i,s){let a=t.get(r);return a&&(r=a),e.call(eI,r,n,i,s)}).bind(null,eL,eH),eI.prototype.require=function(e){return e.endsWith(".shared-runtime")?eM.call(this,`next/dist/server/route-modules/pages/vendored/contexts/${ek.basename(e,".shared-runtime")}`):eM.call(this,e)},r("./dist/esm/server/node-polyfill-crypto.js"),"undefined"!=typeof performance&&["mark","measure","getEntriesByName"].every(e=>"function"==typeof performance[e]);class eF extends Error{}class ez extends Error{}class eU extends Error{constructor(e){super(),this.code="ENOENT",this.name="PageNotFoundError",this.message=`Cannot find module for page: ${e}`}}class eX extends Error{constructor(e,t){super(),this.message=`Failed to load static file for page: ${e} ${t}`}}var eW=r("./dist/compiled/path-to-regexp/index.js");let eB="_NEXTSEP_";function eG(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 eV(e){let t=e;return(t=t.replace(/(\([^)]*\)):([^/\s]+)/g,`$1${eB}:$2`)).replace(/:([^:/\s)]+)(?=:)/g,`:$1${eB}`)}function eK(e){return e.replace(RegExp(`\\)${eB}`,"g"),")")}function eY(e,t,r){if("string"!=typeof e)return(0,eW.pathToRegexp)(e,t,r);let n=eG(e),i=n?eV(e):e;try{return(0,eW.pathToRegexp)(i,t,r)}catch(i){if(!n)try{let n=eV(e);return(0,eW.pathToRegexp)(n,t,r)}catch(e){}throw i}}function eJ(e,t){let r=eG(e),n=r?eV(e):e;try{let e=(0,eW.compile)(n,t);if(r)return t=>eK(e(t));return e}catch(n){if(!r)try{let r=eV(e),n=(0,eW.compile)(r,t);return e=>eK(n(e))}catch(e){}throw n}}function eQ({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 eF("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(`^${eB}`),""):Array.isArray(r)?n[e]=r.map(e=>"string"==typeof e?e.replace(RegExp(`^${eB}`),""):e):n[e]=r;return n}}let eZ=Symbol.for("NextInternalRequestMeta");function e0(e,t){let r=e[eZ]||{};return"string"==typeof t?r[t]:r}function e1(e,t,r){let n=e0(e);return n[t]=r,e[eZ]=n,n}function e4(e,t){let r=e0(e);return delete r[t],e[eZ]=r,r}r("./dist/esm/shared/lib/modern-browserslist-target.js");let e2="/_not-found",e3=`${e2}/page`,e8="pages-manifest.json",e5="app-paths-manifest.json",e9="server";[...process?.features?.typescript?["next.config.mts"]:[]];let e6=["/_document","/_app","/_error"];Symbol("polyfills");let e7=["/500"];function te(e,t){let r=A().join(e,t);return ed().existsSync(r)||(r=A().join(e,"src",t),ed().existsSync(r))?r:null}class tt{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 tr extends Error{constructor(){super("Headers cannot be modified. Read more: https://nextjs.org/docs/app/api-reference/functions/headers")}static callable(){throw new tr}}class tn extends Headers{constructor(e){super(),this.headers=new Proxy(e,{get(t,r,n){if("symbol"==typeof r)return tt.get(t,r,n);let i=r.toLowerCase(),s=Object.keys(e).find(e=>e.toLowerCase()===i);if(void 0!==s)return tt.get(t,s,n)},set(t,r,n,i){if("symbol"==typeof r)return tt.set(t,r,n,i);let s=r.toLowerCase(),a=Object.keys(e).find(e=>e.toLowerCase()===s);return tt.set(t,a??r,n,i)},has(t,r){if("symbol"==typeof r)return tt.has(t,r);let n=r.toLowerCase(),i=Object.keys(e).find(e=>e.toLowerCase()===n);return void 0!==i&&tt.has(t,i)},deleteProperty(t,r){if("symbol"==typeof r)return tt.deleteProperty(t,r);let n=r.toLowerCase(),i=Object.keys(e).find(e=>e.toLowerCase()===n);return void 0===i||tt.deleteProperty(t,i)}})}static seal(e){return new Proxy(e,{get(e,t,r){switch(t){case"append":case"delete":case"set":return tr.callable;default:return tt.get(e,t,r)}}})}merge(e){return Array.isArray(e)?e.join(", "):e}static from(e){return e instanceof Headers?e:new tn(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 ti="text/html; charset=utf-8",ts="nxtP",ta="nxtI",to="x-matched-path",tl=".segments",tc=".segment.rsc",tu=".rsc",td=".json",th=".meta",tp="x-next-cache-tags",tf="x-next-revalidated-tags",tm={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"};({...tm,GROUP:{builtinReact:[tm.reactServerComponents,tm.actionBrowser],serverOnly:[tm.reactServerComponents,tm.actionBrowser,tm.instrument,tm.middleware],neutralTarget:[tm.apiNode,tm.apiEdge],clientOnly:[tm.serverSideRendering,tm.appPagesBrowser],bundled:[tm.reactServerComponents,tm.actionBrowser,tm.serverSideRendering,tm.appPagesBrowser,tm.shared,tm.instrument,tm.middleware],appPages:[tm.reactServerComponents,tm.serverSideRendering,tm.appPagesBrowser,tm.actionBrowser]}});let tg=require("next/dist/server/lib/trace/tracer");var ty=((E=ty||{}).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),tv=((_=tv||{}).loadDefaultErrorComponents="LoadComponents.loadDefaultErrorComponents",_.loadComponents="LoadComponents.loadComponents",_),tb=((x=tb||{}).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 tE=Symbol("__prerender_bypass");var t_=((w={})[w.SeeOther=303]="SeeOther",w[w.TemporaryRedirect=307]="TemporaryRedirect",w[w.PermanentRedirect=308]="PermanentRedirect",w);function tx(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 tw{constructor(e,t,r){this.method=e,this.url=t,this.body=r}get cookies(){return this._cookies?this._cookies:this._cookies=tx(this.headers)()}}class tR{constructor(e){this.destination=e}redirect(e,t){return this.setHeader("Location",e),this.statusCode=t,t===t_.PermanentRedirect&&this.setHeader("Refresh",`0;url=${e}`),this}}class tC extends tw{static #e=T=eZ;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[eZ]||{},this.streaming=!1}get originalRequest(){return this._req[eZ]=this[eZ],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 tP extends tR{get originalResponse(){return tE in this&&(this._res[tE]=this[tE]),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 tO=r("./dist/compiled/fresh/index.js"),tT=r.n(tO);async function tS({req:e,res:t,result:r,generateEtags:n,poweredByHeader:i,cacheControl:s,cdnCacheControlHeader:a}){let o;if(t.finished||t.headersSent)return;i&&r.contentType===ti&&t.setHeader("X-Powered-By","Next.js"),s&&!t.getHeader("Cache-Control")&&(o=function({revalidate:e,expire:t}){let r="number"==typeof e&&void 0!==t&&e<t?`, stale-while-revalidate=${t-e}`:"";if(0===e)return{"Cache-Control":"private, no-cache, no-store, max-age=0, must-revalidate"};let n="number"==typeof e?e:31536e3,i=`max-age=${n}${r}`;return{"Cache-Control":`s-maxage=${n}`,cdnCacheControl:i}}(s),t.setHeader("Cache-Control",o["Cache-Control"]),o.cdnCacheControl&&t.setHeader(a??"CDN-Cache-Control",o.cdnCacheControl));let l=r.isDynamic?null:r.toUnchunkedString();if(n&&null!==l){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)+'"')(l);if(r&&t.setHeader("ETag",r),tT()(e.headers,{etag:r})&&(t.statusCode=304,t.end(),1))return}(!t.getHeader("Content-Type")&&r.contentType&&t.setHeader("Content-Type",r.contentType),l&&t.setHeader("Content-Length",Buffer.byteLength(l)),"HEAD"===e.method)?t.end(null):null!==l?t.end(l):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 tj(e){return"string"==typeof e?e:("number"!=typeof e||isNaN(e))&&"boolean"!=typeof e?"":String(e)}function tA(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 tD={wait:es(Q("○")),error:et(Q("⨯")),warn:en(Q("⚠")),ready:"▲",info:es(Q(" ")),event:er(Q("✓")),trace:ei(Q("\xbb"))},t$={log:"log",warn:"warn",error:"error"};function tk(e,...t){(""===t[0]||void 0===t[0])&&1===t.length&&t.shift();let r=e in t$?t$[e]:"log",n=tD[e];0===t.length?console[r](""):1===t.length&&"string"==typeof t[0]?console[r](n+" "+t[0]):console[r](n,...t)}function tI(e){console.log(e)}function tM(...e){tk("wait",...e)}function tL(...e){tk("error",...e)}function tq(...e){tk("warn",...e)}function tH(...e){tk("ready",...e)}function tF(...e){tk("info",...e)}function tz(...e){tk("event",...e)}function tU(...e){tk("trace",...e)}let tX=new M(1e4,e=>e.length);function tW(...e){let t=e.join(" ");tX.has(t)||(tX.set(t,t),tq(...e))}let tB=new M(1e4,e=>e.length);function tG(...e){let t=e.join(" ");tB.has(t)||(tB.set(t,t),tL(...e))}var tV=r("os"),tK=r.n(tV);let tY="100 MB";function tJ(e){let t=r("./dist/compiled/bytes/index.js").parse(e??tY);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:3e8,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,cdnCacheControlHeader:void 0,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)||(tK().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.21".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:!1,lockDistDir:!0,isolatedDevBuild:!0,proxyClientMaxBodySize:0xa00000,hideLogsAfterAbort:!1,mcpServer:!0,turbopackFileSystemCacheForDev:!0,turbopackFileSystemCacheForBuild:!1,turbopackInferModuleSideEffects:!0,devCacheControlNoCache:!1},htmlLimitedBots:void 0,bundlePagesRouterDependencies:!1});let tQ="(?:[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])",tZ=`(${tQ}[.]){3}${tQ}`,t0="(?:[0-9a-fA-F]{1,4})",t1=RegExp(`^((?:${t0}:){7}(?:${t0}|:)|(?:${t0}:){6}(?:${tZ}|:${t0}|:)|(?:${t0}:){5}(?::${tZ}|(:${t0}){1,2}|:)|(?:${t0}:){4}(?:(:${t0}){0,1}:${tZ}|(:${t0}){1,3}|:)|(?:${t0}:){3}(?:(:${t0}){0,2}:${tZ}|(:${t0}){1,4}|:)|(?:${t0}:){2}(?:(:${t0}){0,3}:${tZ}|(:${t0}){1,5}|:)|(?:${t0}:){1}(?:(:${t0}){0,4}:${tZ}|(:${t0}){1,6}|:)|(?::((?::${t0}){0,5}:${tZ}|(?::${t0}){1,7}|:)))(%[0-9a-zA-Z-.:]{1,})?$`);function t4(e){return e.startsWith("/")?e:`/${e}`}function t2(e){return t4(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 t3(e){return e.replace(/\.rsc($|\?)/,"$1")}let t8=["(..)(..)","(.)","(..)","(...)"];function t5(e){return void 0!==e.split("/").find(e=>t8.find(t=>e.startsWith(t)))}let t9=/\/[^/]*\[[^/]+\][^/]*(?=\/|$)/,t6=/\/\[[^/]+\](?=\/|$)/;function t7(e,t=!0){return(t5(e)&&(e=function(e){let t,r,n;for(let i of e.split("/"))if(r=t8.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=t2(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)?t6.test(e):t9.test(e)}let re=/[\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,rt=/Googlebot(?!-)|Googlebot$/i,rr=re.source;function rn(){}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 ri=new TextEncoder;function rs(e){return new ReadableStream({start(t){t.enqueue(ri.encode(e)),t.close()}})}function ra(e){return new ReadableStream({start(t){t.enqueue(e),t.close()}})}async function ro(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 rl(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 rc(e){let t={},r=[];if(e)for(let[n,i]of e.entries())"set-cookie"===n.toLowerCase()?(r.push(...rl(i)),t[n]=1===r.length?r[0]:r):t[n]=i;return t}function ru(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 rd(e){for(let t of[ts,ta])if(e!==t&&e.startsWith(t))return e.substring(t.length);return null}function rh(e){return e.replace(/\/$/,"")||"/"}function rp(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 rf(e,t){if(!e.startsWith("/")||!t)return e;let{pathname:r,query:n,hash:i}=rp(e);return`${t}${r}${n}${i}`}function rm(e,t){if(!e.startsWith("/")||!t)return e;let{pathname:r,query:n,hash:i}=rp(e);return`${r}${t}${n}${i}`}function rg(e,t){if("string"!=typeof e)return!1;let{pathname:r}=rp(e);return r===t||r.startsWith(t+"/")}function ry(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 rv=new WeakMap;function rb(e,t){let r;if(!t)return{pathname:e};let n=rv.get(t);n||(n=t.map(e=>e.toLowerCase()),rv.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 rE(e,t){if(!rg(e,t))return e;let r=e.slice(t.length);return r.startsWith("/")?r:`/${r}`}function r_(e,t){let{basePath:r,i18n:n,trailingSlash:i}=t.nextConfig??{},s={pathname:e,trailingSlash:"/"!==e?e.endsWith("/"):i};r&&rg(s.pathname,r)&&(s.pathname=rE(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):rb(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):rb(a,n.locales)).detectedLocale&&(s.locale=e.detectedLocale)}return s}let rx=/(?!^https?:\/\/)(127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}|\[::1\]|localhost)/;function rw(e,t){return new URL(String(e).replace(rx,"localhost"),t&&String(t).replace(rx,"localhost"))}let rR=Symbol("NextURLInternal");class rC{constructor(e,t,r){let n,i;"object"==typeof t&&"pathname"in t||"string"==typeof t?(n=t,i=r||{}):i=r||t||{},this[rR]={url:rw(e,n??i.base),options:i,basePath:""},this.analyze()}analyze(){var e,t,r,n,i;let s=r_(this[rR].url.pathname,{nextConfig:this[rR].options.nextConfig,parseData:!process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE,i18nProvider:this[rR].options.i18nProvider}),a=ry(this[rR].url,this[rR].options.headers);this[rR].domainLocale=this[rR].options.i18nProvider?this[rR].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[rR].options.nextConfig)||null==(e=t.i18n)?void 0:e.domains,a);let o=(null==(r=this[rR].domainLocale)?void 0:r.defaultLocale)||(null==(i=this[rR].options.nextConfig)||null==(n=i.i18n)?void 0:n.defaultLocale);this[rR].url.pathname=s.pathname,this[rR].defaultLocale=o,this[rR].basePath=s.basePath??"",this[rR].buildId=s.buildId,this[rR].locale=s.locale??o,this[rR].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&&(rg(i,"/api")||rg(i,`/${t.toLowerCase()}`))?e:rf(e,`/${t}`)}((e={basePath:this[rR].basePath,buildId:this[rR].buildId,defaultLocale:this[rR].options.forceLocale?void 0:this[rR].defaultLocale,locale:this[rR].locale,pathname:this[rR].url.pathname,trailingSlash:this[rR].trailingSlash}).pathname,e.locale,e.buildId?void 0:e.defaultLocale,e.ignorePrefix),(e.buildId||!e.trailingSlash)&&(t=rh(t)),e.buildId&&(t=rm(rf(t,`/_next/data/${e.buildId}`),"/"===e.pathname?"index.json":".json")),t=rf(t,e.basePath),!e.buildId&&e.trailingSlash?t.endsWith("/")?t:rm(t,"/"):rh(t)}formatSearch(){return this[rR].url.search}get buildId(){return this[rR].buildId}set buildId(e){this[rR].buildId=e}get locale(){return this[rR].locale??""}set locale(e){var t,r;if(!this[rR].locale||!(null==(r=this[rR].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[rR].locale=e}get defaultLocale(){return this[rR].defaultLocale}get domainLocale(){return this[rR].domainLocale}get searchParams(){return this[rR].url.searchParams}get host(){return this[rR].url.host}set host(e){this[rR].url.host=e}get hostname(){return this[rR].url.hostname}set hostname(e){this[rR].url.hostname=e}get port(){return this[rR].url.port}set port(e){this[rR].url.port=e}get protocol(){return this[rR].url.protocol}set protocol(e){this[rR].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[rR].url=rw(e),this.analyze()}get origin(){return this[rR].url.origin}get pathname(){return this[rR].url.pathname}set pathname(e){this[rR].url.pathname=e}get hash(){return this[rR].url.hash}set hash(e){this[rR].url.hash=e}get search(){return this[rR].url.search}set search(e){this[rR].url.search=e}get password(){return this[rR].url.password}set password(e){this[rR].url.password=e}get username(){return this[rR].url.username}set username(e){this[rR].url.username=e}get basePath(){return this[rR].basePath}set basePath(e){this[rR].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 rC(String(this),this[rR].options)}}class rP 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
|
@@ -311,7 +311,7 @@ export default async function build(dir, experimentalAnalyze = false, reactProdu
|
|
|
311
311
|
try {
|
|
312
312
|
const nextBuildSpan = trace('next-build', undefined, {
|
|
313
313
|
buildMode: experimentalBuildMode,
|
|
314
|
-
version: "16.1.1-canary.
|
|
314
|
+
version: "16.1.1-canary.21"
|
|
315
315
|
});
|
|
316
316
|
NextBuildContext.nextBuildSpan = nextBuildSpan;
|
|
317
317
|
NextBuildContext.dir = dir;
|
|
@@ -811,7 +811,7 @@ export default async function build(dir, experimentalAnalyze = false, reactProdu
|
|
|
811
811
|
// Files outside of the distDir can be "type": "module"
|
|
812
812
|
await writeFileUtf8(path.join(distDir, 'package.json'), '{"type": "commonjs"}');
|
|
813
813
|
// These are written to distDir, so they need to come after creating and cleaning distDr.
|
|
814
|
-
await recordFrameworkVersion("16.1.1-canary.
|
|
814
|
+
await recordFrameworkVersion("16.1.1-canary.21");
|
|
815
815
|
await updateBuildDiagnostics({
|
|
816
816
|
buildStage: 'start'
|
|
817
817
|
});
|
|
@@ -2492,7 +2492,7 @@ export default async function build(dir, experimentalAnalyze = false, reactProdu
|
|
|
2492
2492
|
configOutDir: path.join(dir, configOutDir),
|
|
2493
2493
|
staticPages,
|
|
2494
2494
|
serverPropsPages,
|
|
2495
|
-
nextVersion: "16.1.1-canary.
|
|
2495
|
+
nextVersion: "16.1.1-canary.21",
|
|
2496
2496
|
tracingRoot: outputFileTracingRoot,
|
|
2497
2497
|
hasNodeMiddleware,
|
|
2498
2498
|
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.21";
|
|
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.21",
|
|
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.21"}|${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.21"}|${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.21";
|
|
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.21";
|
|
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.21"
|
|
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.21"
|
|
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.21"}`))}${versionSuffix}`);
|
|
25
25
|
if (appUrl) {
|
|
26
26
|
Log.bootstrap(`- Local: ${appUrl}`);
|
|
27
27
|
}
|
|
@@ -112,7 +112,7 @@ export async function getRequestHandlers({ dir, port, isDev, onDevServerCleanup,
|
|
|
112
112
|
export async function startServer(serverOptions) {
|
|
113
113
|
const { dir, isDev, hostname, minimalMode, allowRetry, keepAliveTimeout, selfSignedCertificate } = serverOptions;
|
|
114
114
|
let { port } = serverOptions;
|
|
115
|
-
process.title = `next-server (v${"16.1.1-canary.
|
|
115
|
+
process.title = `next-server (v${"16.1.1-canary.21"})`;
|
|
116
116
|
let handlersReady = ()=>{};
|
|
117
117
|
let handlersError = ()=>{};
|
|
118
118
|
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.21"?.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.21"
|
|
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.21"
|
|
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.21"}`))}${versionSuffix}`);
|
|
89
89
|
if (appUrl) {
|
|
90
90
|
_log.bootstrap(`- Local: ${appUrl}`);
|
|
91
91
|
}
|
|
@@ -180,7 +180,7 @@ async function getRequestHandlers({ dir, port, isDev, onDevServerCleanup, server
|
|
|
180
180
|
async function startServer(serverOptions) {
|
|
181
181
|
const { dir, isDev, hostname, minimalMode, allowRetry, keepAliveTimeout, selfSignedCertificate } = serverOptions;
|
|
182
182
|
let { port } = serverOptions;
|
|
183
|
-
process.title = `next-server (v${"16.1.1-canary.
|
|
183
|
+
process.title = `next-server (v${"16.1.1-canary.21"})`;
|
|
184
184
|
let handlersReady = ()=>{};
|
|
185
185
|
let handlersError = ()=>{};
|
|
186
186
|
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.21"?.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.21" !== 'string') {
|
|
15
15
|
return [];
|
|
16
16
|
}
|
|
17
17
|
const payload = {
|
|
18
|
-
nextVersion: "16.1.1-canary.
|
|
18
|
+
nextVersion: "16.1.1-canary.21",
|
|
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.21" !== '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.21",
|
|
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.21",
|
|
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.21",
|
|
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.21",
|
|
132
|
+
"@next/swc-darwin-x64": "16.1.1-canary.21",
|
|
133
|
+
"@next/swc-linux-arm64-gnu": "16.1.1-canary.21",
|
|
134
|
+
"@next/swc-linux-arm64-musl": "16.1.1-canary.21",
|
|
135
|
+
"@next/swc-linux-x64-gnu": "16.1.1-canary.21",
|
|
136
|
+
"@next/swc-linux-x64-musl": "16.1.1-canary.21",
|
|
137
|
+
"@next/swc-win32-arm64-msvc": "16.1.1-canary.21",
|
|
138
|
+
"@next/swc-win32-x64-msvc": "16.1.1-canary.21"
|
|
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.21",
|
|
174
|
+
"@next/polyfill-module": "16.1.1-canary.21",
|
|
175
|
+
"@next/polyfill-nomodule": "16.1.1-canary.21",
|
|
176
|
+
"@next/react-refresh-utils": "16.1.1-canary.21",
|
|
177
|
+
"@next/swc": "16.1.1-canary.21",
|
|
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
|