nitropack-nightly 2.12.6-20250904-221031.a64aa4c5 → 2.12.6-20250908-085153.e195f910

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.
@@ -1,4 +1,4 @@
1
- const version = "2.12.6-20250904-221031.a64aa4c5";
1
+ const version = "2.12.6-20250908-085153.e195f910";
2
2
 
3
3
  const compatibilityChanges = [
4
4
  {
@@ -64,6 +64,10 @@ export async function generateFunctionFiles(nitro) {
64
64
  );
65
65
  const _getRouteRules = (path) => defu({}, ..._routeRulesMatcher.matchAll(path).reverse());
66
66
  for (const route of o11Routes) {
67
+ const routeRules = _getRouteRules(route.src);
68
+ if (routeRules.isr) {
69
+ continue;
70
+ }
67
71
  const funcPrefix = resolve(
68
72
  nitro.options.output.serverDir,
69
73
  "..",
@@ -75,14 +79,6 @@ export async function generateFunctionFiles(nitro) {
75
79
  funcPrefix + ".func",
76
80
  "junction"
77
81
  );
78
- const routeRules = _getRouteRules(route.src);
79
- if (routeRules.isr) {
80
- await writePrerenderConfig(
81
- funcPrefix + ".prerender-config.json",
82
- routeRules.isr,
83
- nitro.options.vercel?.config?.bypassToken
84
- );
85
- }
86
82
  }
87
83
  }
88
84
  export async function generateEdgeFunctionFiles(nitro) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nitropack-nightly",
3
- "version": "2.12.6-20250904-221031.a64aa4c5",
3
+ "version": "2.12.6-20250908-085153.e195f910",
4
4
  "description": "Build and Deploy Universal JavaScript Servers",
5
5
  "repository": "nitrojs/nitro",
6
6
  "license": "MIT",