@nuxt/nitro-server-nightly 4.2.3-29425455.7d502292 → 4.2.3-29426963.691e6887

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/index.mjs CHANGED
@@ -17,7 +17,7 @@ import { isWindows } from 'std-env';
17
17
  import { ImpoundPlugin } from 'impound';
18
18
  import { resolveModulePath } from 'exsolve';
19
19
 
20
- const version = "4.2.3-29425455.7d502292";
20
+ const version = "4.2.3-29426963.691e6887";
21
21
 
22
22
  function toArray(value) {
23
23
  return Array.isArray(value) ? value : [value];
@@ -60,8 +60,9 @@ export default defineEventHandler(async (event) => {
60
60
  const currentValue = islandHead[key];
61
61
  if (Array.isArray(currentValue)) {
62
62
  currentValue.push(...value);
63
+ } else {
64
+ islandHead[key] = value;
63
65
  }
64
- islandHead[key] = value;
65
66
  }
66
67
  }
67
68
  const islandResponse = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/nitro-server-nightly",
3
- "version": "4.2.3-29425455.7d502292",
3
+ "version": "4.2.3-29426963.691e6887",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/nuxt/nuxt.git",
@@ -19,7 +19,7 @@
19
19
  ],
20
20
  "dependencies": {
21
21
  "@nuxt/devalue": "^2.0.2",
22
- "@nuxt/kit": "npm:@nuxt/kit-nightly@4.2.3-29425455.7d502292",
22
+ "@nuxt/kit": "npm:@nuxt/kit-nightly@4.2.3-29426963.691e6887",
23
23
  "@unhead/vue": "^2.0.19",
24
24
  "@vue/shared": "^3.5.25",
25
25
  "consola": "^3.4.2",
@@ -46,11 +46,11 @@
46
46
  "vue-devtools-stub": "^0.1.0"
47
47
  },
48
48
  "peerDependencies": {
49
- "nuxt": "npm:nuxt-nightly@4.2.3-29425455.7d502292"
49
+ "nuxt": "npm:nuxt-nightly@4.2.3-29426963.691e6887"
50
50
  },
51
51
  "devDependencies": {
52
- "@nuxt/schema": "npm:@nuxt/schema-nightly@4.2.3-29425455.7d502292",
53
- "nuxt": "npm:nuxt-nightly@4.2.3-29425455.7d502292",
52
+ "@nuxt/schema": "npm:@nuxt/schema-nightly@4.2.3-29426963.691e6887",
53
+ "nuxt": "npm:nuxt-nightly@4.2.3-29426963.691e6887",
54
54
  "unbuild": "3.6.1",
55
55
  "vitest": "3.2.4"
56
56
  },