nitro-nightly 3.0.1-20251124-135409-0c8b5392 → 3.0.1-20251125-140343-cd142cc3

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.
Files changed (49) hide show
  1. package/dist/_build/rolldown.mjs +5 -2
  2. package/dist/_build/rollup.mjs +1 -1
  3. package/dist/_build/vite.build.mjs +1 -1
  4. package/dist/_build/vite.plugin.mjs +3 -3
  5. package/dist/_chunks/{D7BPzaXW.mjs → BEZ4Lko0.mjs} +3 -3
  6. package/dist/_chunks/{HT5r2mpP.mjs → OEiRXl0H.mjs} +10 -6
  7. package/dist/_libs/c12.mjs +1 -1
  8. package/dist/_libs/commondir.mjs +1 -1
  9. package/dist/_libs/deepmerge.mjs +1 -1
  10. package/dist/_libs/duplexer.mjs +1 -1
  11. package/dist/_libs/etag.mjs +1 -1
  12. package/dist/_libs/function-bind.mjs +1 -1
  13. package/dist/_libs/giget.mjs +1 -1
  14. package/dist/_libs/gzip-size.mjs +1 -1
  15. package/dist/_libs/hasown.mjs +1 -1
  16. package/dist/_libs/is-core-module.mjs +1 -1
  17. package/dist/_libs/is-module.mjs +1 -1
  18. package/dist/_libs/is-reference.mjs +2 -1
  19. package/dist/_libs/js-tokens.mjs +1 -1
  20. package/dist/_libs/node-fetch-native.mjs +1 -1
  21. package/dist/_libs/path-parse.mjs +1 -1
  22. package/dist/_libs/picomatch.mjs +1 -1
  23. package/dist/_libs/plugin-alias.mjs +1 -1
  24. package/dist/_libs/plugin-commonjs.mjs +3 -3
  25. package/dist/_libs/plugin-inject.mjs +1 -1
  26. package/dist/_libs/plugin-json.mjs +1 -1
  27. package/dist/_libs/plugin-node-resolve.mjs +2 -2
  28. package/dist/_libs/plugin-replace.mjs +1 -1
  29. package/dist/_libs/strip-literal.mjs +1 -1
  30. package/dist/_libs/tinyglobby.mjs +1 -1
  31. package/dist/_libs/unimport.mjs +14 -12
  32. package/dist/_libs/vite-plugin-fullstack.mjs +1 -1
  33. package/dist/node_modules/youch/build/{chunk-4XB2BYKC.js → chunk-7QV3D5YX.js} +2 -4
  34. package/dist/node_modules/youch/build/{chunk-PUHGL6HA.js → chunk-AUGPHE32.js} +2 -4
  35. package/dist/node_modules/youch/build/{chunk-F4I6KX4R.js → chunk-CM7DWJNZ.js} +2 -4
  36. package/dist/node_modules/youch/build/{chunk-YYEJ3AGB.js → chunk-EJH674NB.js} +2 -4
  37. package/dist/node_modules/youch/build/{chunk-EUJBVOYB.js → chunk-OIJ3WD7L.js} +2 -4
  38. package/dist/node_modules/youch/build/{chunk-HFSXRSKS.js → chunk-P36L72PL.js} +5 -3
  39. package/dist/node_modules/youch/build/{chunk-4YEN7HVQ.js → chunk-PE3GG3TN.js} +5 -1
  40. package/dist/node_modules/youch/build/{chunk-PINJDICN.js → chunk-X53OIOJH.js} +2 -4
  41. package/dist/node_modules/youch/build/index.js +8 -9
  42. package/dist/node_modules/youch/build/public/error_info/style.css +1 -0
  43. package/dist/node_modules/youch/build/public/error_metadata/style.css +3 -0
  44. package/dist/node_modules/youch/build/public/error_stack/style.css +2 -3
  45. package/dist/node_modules/youch/package.json +1 -1
  46. package/dist/runtime/internal/routes/openapi.mjs +2 -2
  47. package/dist/vite.mjs +1 -1
  48. package/package.json +19 -19
  49. package/dist/node_modules/youch/build/chunk-OSUFJZHZ.js +0 -6
@@ -23,7 +23,7 @@ import { n as writeBuildInfo } from "./common.mjs";
23
23
  import { i as watch$1 } from "../_libs/chokidar.mjs";
24
24
  import "../_libs/estree-walker.mjs";
25
25
  import "../_libs/plugin-commonjs.mjs";
26
- import { n as getChunkName, r as baseBuildConfig, t as baseBuildPlugins } from "../_chunks/D7BPzaXW.mjs";
26
+ import { n as getChunkName, r as baseBuildConfig, t as baseBuildPlugins } from "../_chunks/BEZ4Lko0.mjs";
27
27
  import "../_libs/remapping.mjs";
28
28
  import "../_libs/unwasm.mjs";
29
29
  import "../_libs/plugin-replace.mjs";
@@ -41,6 +41,7 @@ const getRolldownConfig = (nitro) => {
41
41
  const base = baseBuildConfig(nitro);
42
42
  const tsc = nitro.options.typescript.tsConfig?.compilerOptions;
43
43
  let config = {
44
+ platform: nitro.options.node ? "node" : "neutral",
44
45
  cwd: nitro.options.rootDir,
45
46
  input: nitro.options.entry,
46
47
  external: [
@@ -143,7 +144,9 @@ async function watchDev(nitro, config) {
143
144
  if (nitro$1.options.logging.buildSuccess) nitro$1.logger.success(`Server built`, start ? `in ${Date.now() - start}ms` : "");
144
145
  nitro$1.hooks.callHook("dev:reload");
145
146
  break;
146
- case "ERROR": nitro$1.hooks.callHook("dev:error", event.error);
147
+ case "ERROR":
148
+ nitro$1.logger.error(event.error);
149
+ nitro$1.hooks.callHook("dev:error", event.error);
147
150
  }
148
151
  });
149
152
  return watcher$1;
@@ -25,7 +25,7 @@ import { t as alias } from "../_libs/plugin-alias.mjs";
25
25
  import "../_libs/estree-walker.mjs";
26
26
  import { t as commonjs } from "../_libs/plugin-commonjs.mjs";
27
27
  import { t as inject } from "../_libs/plugin-inject.mjs";
28
- import { n as getChunkName, r as baseBuildConfig, t as baseBuildPlugins } from "../_chunks/D7BPzaXW.mjs";
28
+ import { n as getChunkName, r as baseBuildConfig, t as baseBuildPlugins } from "../_chunks/BEZ4Lko0.mjs";
29
29
  import "../_libs/remapping.mjs";
30
30
  import "../_libs/unwasm.mjs";
31
31
  import "../_libs/plugin-replace.mjs";
@@ -33,7 +33,7 @@ import "../_libs/plugin-alias.mjs";
33
33
  import "../_libs/estree-walker.mjs";
34
34
  import "../_libs/plugin-commonjs.mjs";
35
35
  import "../_libs/plugin-inject.mjs";
36
- import "../_chunks/D7BPzaXW.mjs";
36
+ import "../_chunks/BEZ4Lko0.mjs";
37
37
  import "../_libs/remapping.mjs";
38
38
  import "../_libs/unwasm.mjs";
39
39
  import "../_libs/plugin-replace.mjs";
@@ -10,7 +10,7 @@ import { i as NodeDevWorker, r as NitroDevApp } from "../_dev.mjs";
10
10
  import { i as watch$1 } from "../_libs/chokidar.mjs";
11
11
  import { t as alias } from "../_libs/plugin-alias.mjs";
12
12
  import { t as inject } from "../_libs/plugin-inject.mjs";
13
- import { n as getChunkName, r as baseBuildConfig, t as baseBuildPlugins } from "../_chunks/D7BPzaXW.mjs";
13
+ import { n as getChunkName, r as baseBuildConfig, t as baseBuildPlugins } from "../_chunks/BEZ4Lko0.mjs";
14
14
  import { t as assetsPlugin } from "../_libs/vite-plugin-fullstack.mjs";
15
15
  import consola$1 from "consola";
16
16
  import { join, resolve } from "node:path";
@@ -330,8 +330,8 @@ async function configureViteDevServer(ctx, server) {
330
330
  };
331
331
  server.middlewares.use(function nitroDevMiddlewarePre(req, res, next) {
332
332
  const fetchDest = req.headers["sec-fetch-dest"];
333
- if (fetchDest) res.setHeader("vary", "sec-fetch-dest");
334
- if (!((req.url || "").match(/\.([a-z0-9]+)(?:[?#]|$)/i)?.[1] || "") && (!fetchDest || /^(document|iframe|frame|empty)$/.test(fetchDest))) nitroDevMiddleware(req, res, next);
333
+ res.setHeader("vary", "sec-fetch-dest");
334
+ if ((!fetchDest || /^(document|iframe|frame|empty)$/.test(fetchDest)) && !req.url.match(/\.([a-z0-9]+)(?:[?#]|$)/i)?.[1] && !/^\/(?:__|@)/.test(req.url)) nitroDevMiddleware(req, res, next);
335
335
  else next();
336
336
  });
337
337
  return () => {
@@ -1,4 +1,4 @@
1
- import { i as __toESM } from "./HT5r2mpP.mjs";
1
+ import { i as __toESM } from "./OEiRXl0H.mjs";
2
2
  import { O as relative, k as resolve, w as join, x as dirname } from "../_libs/c12.mjs";
3
3
  import { c as parseNodeModulePath } from "../_libs/local-pkg.mjs";
4
4
  import { i as unplugin } from "../_libs/unimport.mjs";
@@ -18,7 +18,7 @@ import { pkgDir, presetsDir, runtimeDependencies, runtimeDir } from "nitro/meta"
18
18
  import { hash } from "ohash";
19
19
  import { defineEnv } from "unenv";
20
20
  import { connectors } from "db0";
21
- import { transform } from "oxc-transform";
21
+ import { transformSync } from "oxc-transform";
22
22
  import { builtinDrivers, normalizeKey } from "unstorage";
23
23
  import { rollupNodeFileTrace } from "nf3";
24
24
  import { RENDER_CONTEXT_KEYS, compileTemplateToString, hasTemplateSyntax } from "rendu";
@@ -311,7 +311,7 @@ function routeMeta(nitro) {
311
311
  if (!id.startsWith(virtualPrefix)) return;
312
312
  let meta = null;
313
313
  try {
314
- const jsCode = transform(id, code).code;
314
+ const jsCode = transformSync(id, code).code;
315
315
  const ast = this.parse(jsCode);
316
316
  for (const node of ast.body) if (node.type === "ExpressionStatement" && node.expression.type === "CallExpression" && node.expression.callee.type === "Identifier" && node.expression.callee.name === "defineRouteMeta" && node.expression.arguments.length === 1) {
317
317
  meta = astToObject(node.expression.arguments[0]);
@@ -11,12 +11,16 @@ var __commonJS = (cb, mod) => function() {
11
11
  return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
12
12
  };
13
13
  var __copyProps = (to, from, except, desc) => {
14
- if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
15
- key = keys[i];
16
- if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
17
- get: ((k) => from[k]).bind(null, key),
18
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
19
- });
14
+ if (from && typeof from === "object" || typeof from === "function") {
15
+ for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
16
+ key = keys[i];
17
+ if (!__hasOwnProp.call(to, key) && key !== except) {
18
+ __defProp(to, key, {
19
+ get: ((k) => from[k]).bind(null, key),
20
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
21
+ });
22
+ }
23
+ }
20
24
  }
21
25
  return to;
22
26
  };
@@ -1,4 +1,4 @@
1
- import { i as __toESM, n as __require, t as __commonJS } from "../_chunks/HT5r2mpP.mjs";
1
+ import { i as __toESM, n as __require, t as __commonJS } from "../_chunks/OEiRXl0H.mjs";
2
2
  import path, { isAbsolute, resolve } from "node:path";
3
3
  import process$1 from "node:process";
4
4
  import fs, { existsSync, lstatSync, promises, readFileSync, realpathSync, statSync } from "node:fs";
@@ -1,4 +1,4 @@
1
- import { n as __require, t as __commonJS } from "../_chunks/HT5r2mpP.mjs";
1
+ import { n as __require, t as __commonJS } from "../_chunks/OEiRXl0H.mjs";
2
2
 
3
3
  //#region node_modules/.pnpm/commondir@1.0.1/node_modules/commondir/index.js
4
4
  var require_commondir = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/commondir@1.0.1/node_modules/commondir/index.js": ((exports, module) => {
@@ -1,4 +1,4 @@
1
- import { t as __commonJS } from "../_chunks/HT5r2mpP.mjs";
1
+ import { t as __commonJS } from "../_chunks/OEiRXl0H.mjs";
2
2
 
3
3
  //#region node_modules/.pnpm/deepmerge@4.3.1/node_modules/deepmerge/dist/cjs.js
4
4
  var require_cjs = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/deepmerge@4.3.1/node_modules/deepmerge/dist/cjs.js": ((exports, module) => {
@@ -1,4 +1,4 @@
1
- import { n as __require, t as __commonJS } from "../_chunks/HT5r2mpP.mjs";
1
+ import { n as __require, t as __commonJS } from "../_chunks/OEiRXl0H.mjs";
2
2
 
3
3
  //#region node_modules/.pnpm/duplexer@0.1.2/node_modules/duplexer/index.js
4
4
  var require_duplexer = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/duplexer@0.1.2/node_modules/duplexer/index.js": ((exports, module) => {
@@ -1,4 +1,4 @@
1
- import { n as __require, t as __commonJS } from "../_chunks/HT5r2mpP.mjs";
1
+ import { n as __require, t as __commonJS } from "../_chunks/OEiRXl0H.mjs";
2
2
 
3
3
  //#region node_modules/.pnpm/etag@1.8.1/node_modules/etag/index.js
4
4
  /*!
@@ -1,4 +1,4 @@
1
- import { t as __commonJS } from "../_chunks/HT5r2mpP.mjs";
1
+ import { t as __commonJS } from "../_chunks/OEiRXl0H.mjs";
2
2
 
3
3
  //#region node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js
4
4
  var require_implementation = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js": ((exports, module) => {
@@ -1,4 +1,4 @@
1
- import { n as __require, r as __toDynamicImportESM, t as __commonJS } from "../_chunks/HT5r2mpP.mjs";
1
+ import { n as __require, r as __toDynamicImportESM, t as __commonJS } from "../_chunks/OEiRXl0H.mjs";
2
2
  import { T as normalize$2, b as basename$2, f as readPackageJSON, k as resolve$2, w as join$2, x as dirname$2 } from "./c12.mjs";
3
3
  import { createRequire } from "node:module";
4
4
  import { delimiter, dirname, normalize, resolve } from "node:path";
@@ -1,4 +1,4 @@
1
- import { i as __toESM } from "../_chunks/HT5r2mpP.mjs";
1
+ import { i as __toESM } from "../_chunks/OEiRXl0H.mjs";
2
2
  import { t as require_duplexer } from "./duplexer.mjs";
3
3
  import fs from "node:fs";
4
4
  import { promisify } from "node:util";
@@ -1,4 +1,4 @@
1
- import { t as __commonJS } from "../_chunks/HT5r2mpP.mjs";
1
+ import { t as __commonJS } from "../_chunks/OEiRXl0H.mjs";
2
2
  import { t as require_function_bind } from "./function-bind.mjs";
3
3
 
4
4
  //#region node_modules/.pnpm/hasown@2.0.2/node_modules/hasown/index.js
@@ -1,4 +1,4 @@
1
- import { t as __commonJS } from "../_chunks/HT5r2mpP.mjs";
1
+ import { t as __commonJS } from "../_chunks/OEiRXl0H.mjs";
2
2
  import { t as require_hasown } from "./hasown.mjs";
3
3
 
4
4
  //#region node_modules/.pnpm/is-core-module@2.16.1/node_modules/is-core-module/core.json
@@ -1,4 +1,4 @@
1
- import { t as __commonJS } from "../_chunks/HT5r2mpP.mjs";
1
+ import { t as __commonJS } from "../_chunks/OEiRXl0H.mjs";
2
2
 
3
3
  //#region node_modules/.pnpm/is-module@1.0.0/node_modules/is-module/index.js
4
4
  var require_is_module = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/is-module@1.0.0/node_modules/is-module/index.js": ((exports, module) => {
@@ -1,10 +1,11 @@
1
- import { t as __commonJS } from "../_chunks/HT5r2mpP.mjs";
1
+ import { t as __commonJS } from "../_chunks/OEiRXl0H.mjs";
2
2
 
3
3
  //#region node_modules/.pnpm/is-reference@1.2.1/node_modules/is-reference/dist/is-reference.js
4
4
  var require_is_reference = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/is-reference@1.2.1/node_modules/is-reference/dist/is-reference.js": ((exports, module) => {
5
5
  (function(global, factory) {
6
6
  typeof exports === "object" && typeof module !== "undefined" ? module.exports = factory() : typeof define === "function" && define.amd ? define(factory) : (global = global || self, global.isReference = factory());
7
7
  })(exports, (function() {
8
+ "use strict";
8
9
  function isReference(node, parent) {
9
10
  if (node.type === "MemberExpression") return !node.computed && isReference(node.object, node);
10
11
  if (node.type === "Identifier") {
@@ -1,4 +1,4 @@
1
- import { t as __commonJS } from "../_chunks/HT5r2mpP.mjs";
1
+ import { t as __commonJS } from "../_chunks/OEiRXl0H.mjs";
2
2
 
3
3
  //#region node_modules/.pnpm/js-tokens@9.0.1/node_modules/js-tokens/index.js
4
4
  var require_js_tokens = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/js-tokens@9.0.1/node_modules/js-tokens/index.js": ((exports, module) => {
@@ -1,4 +1,4 @@
1
- import { n as __require, t as __commonJS } from "../_chunks/HT5r2mpP.mjs";
1
+ import { n as __require, t as __commonJS } from "../_chunks/OEiRXl0H.mjs";
2
2
  import { i as require_node_fetch_native_DhEqb06g, r as require_node } from "./giget.mjs";
3
3
 
4
4
  //#region node_modules/.pnpm/node-fetch-native@1.6.7/node_modules/node-fetch-native/dist/chunks/multipart-parser.cjs
@@ -1,4 +1,4 @@
1
- import { t as __commonJS } from "../_chunks/HT5r2mpP.mjs";
1
+ import { t as __commonJS } from "../_chunks/OEiRXl0H.mjs";
2
2
 
3
3
  //#region node_modules/.pnpm/path-parse@1.0.7/node_modules/path-parse/index.js
4
4
  var require_path_parse = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/path-parse@1.0.7/node_modules/path-parse/index.js": ((exports, module) => {
@@ -1,4 +1,4 @@
1
- import { t as __commonJS } from "../_chunks/HT5r2mpP.mjs";
1
+ import { t as __commonJS } from "../_chunks/OEiRXl0H.mjs";
2
2
 
3
3
  //#region node_modules/.pnpm/picomatch@4.0.3/node_modules/picomatch/lib/constants.js
4
4
  var require_constants = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/picomatch@4.0.3/node_modules/picomatch/lib/constants.js": ((exports, module) => {
@@ -1,6 +1,6 @@
1
1
  import path from "node:path";
2
2
 
3
- //#region node_modules/.pnpm/@rollup+plugin-alias@6.0.0_rollup@4.53.2/node_modules/@rollup/plugin-alias/dist/index.js
3
+ //#region node_modules/.pnpm/@rollup+plugin-alias@6.0.0_rollup@4.53.3/node_modules/@rollup/plugin-alias/dist/index.js
4
4
  function matches(pattern, importee) {
5
5
  if (pattern instanceof RegExp) return pattern.test(importee);
6
6
  if (importee.length < pattern.length) return false;
@@ -1,4 +1,4 @@
1
- import { i as __toESM } from "../_chunks/HT5r2mpP.mjs";
1
+ import { i as __toESM } from "../_chunks/OEiRXl0H.mjs";
2
2
  import { t as MagicString } from "./magic-string.mjs";
3
3
  import { t as require_picomatch } from "./picomatch.mjs";
4
4
  import { t as Builder } from "./fdir.mjs";
@@ -8,7 +8,7 @@ import { t as require_is_reference } from "./is-reference.mjs";
8
8
  import { existsSync, readFileSync, statSync } from "fs";
9
9
  import { basename, dirname, extname, isAbsolute, join, posix, relative, resolve, sep, win32 } from "path";
10
10
 
11
- //#region node_modules/.pnpm/@rollup+pluginutils@5.3.0_rollup@4.53.2/node_modules/@rollup/pluginutils/dist/es/index.js
11
+ //#region node_modules/.pnpm/@rollup+pluginutils@5.3.0_rollup@4.53.3/node_modules/@rollup/pluginutils/dist/es/index.js
12
12
  var import_picomatch = /* @__PURE__ */ __toESM(require_picomatch(), 1);
13
13
  const extractors = {
14
14
  ArrayPattern(names, param) {
@@ -243,7 +243,7 @@ const dataToEsm = function dataToEsm$1(data, options = {}) {
243
243
  };
244
244
 
245
245
  //#endregion
246
- //#region node_modules/.pnpm/@rollup+plugin-commonjs@29.0.0_rollup@4.53.2/node_modules/@rollup/plugin-commonjs/dist/es/index.js
246
+ //#region node_modules/.pnpm/@rollup+plugin-commonjs@29.0.0_rollup@4.53.3/node_modules/@rollup/plugin-commonjs/dist/es/index.js
247
247
  var import_commondir = /* @__PURE__ */ __toESM(require_commondir(), 1);
248
248
  var import_is_reference = /* @__PURE__ */ __toESM(require_is_reference(), 1);
249
249
  var version = "29.0.0";
@@ -3,7 +3,7 @@ import { n as walk } from "./estree-walker.mjs";
3
3
  import { a as makeLegalIdentifier, n as attachScopes, r as createFilter } from "./plugin-commonjs.mjs";
4
4
  import { sep } from "path";
5
5
 
6
- //#region node_modules/.pnpm/@rollup+plugin-inject@5.0.5_rollup@4.53.2/node_modules/@rollup/plugin-inject/dist/es/index.js
6
+ //#region node_modules/.pnpm/@rollup+plugin-inject@5.0.5_rollup@4.53.3/node_modules/@rollup/plugin-inject/dist/es/index.js
7
7
  var escape = function(str) {
8
8
  return str.replace(/[-[\]/{}()*+?.\\^$|]/g, "\\$&");
9
9
  };
@@ -1,6 +1,6 @@
1
1
  import { i as dataToEsm, r as createFilter } from "./plugin-commonjs.mjs";
2
2
 
3
- //#region node_modules/.pnpm/@rollup+plugin-json@6.1.0_rollup@4.53.2/node_modules/@rollup/plugin-json/dist/es/index.js
3
+ //#region node_modules/.pnpm/@rollup+plugin-json@6.1.0_rollup@4.53.3/node_modules/@rollup/plugin-json/dist/es/index.js
4
4
  function json(options) {
5
5
  if (options === void 0) options = {};
6
6
  var filter = createFilter(options.include, options.exclude);
@@ -1,4 +1,4 @@
1
- import { i as __toESM, n as __require, t as __commonJS } from "../_chunks/HT5r2mpP.mjs";
1
+ import { i as __toESM, n as __require, t as __commonJS } from "../_chunks/OEiRXl0H.mjs";
2
2
  import { r as createFilter } from "./plugin-commonjs.mjs";
3
3
  import { t as require_cjs } from "./deepmerge.mjs";
4
4
  import { t as require_is_module } from "./is-module.mjs";
@@ -694,7 +694,7 @@ var require_resolve = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/resolve@1
694
694
  }) });
695
695
 
696
696
  //#endregion
697
- //#region node_modules/.pnpm/@rollup+plugin-node-resolve@16.0.3_rollup@4.53.2/node_modules/@rollup/plugin-node-resolve/dist/es/index.js
697
+ //#region node_modules/.pnpm/@rollup+plugin-node-resolve@16.0.3_rollup@4.53.3/node_modules/@rollup/plugin-node-resolve/dist/es/index.js
698
698
  var import_cjs = /* @__PURE__ */ __toESM(require_cjs(), 1);
699
699
  var import_is_module = /* @__PURE__ */ __toESM(require_is_module(), 1);
700
700
  var import_resolve = /* @__PURE__ */ __toESM(require_resolve(), 1);
@@ -1,7 +1,7 @@
1
1
  import { t as MagicString } from "./magic-string.mjs";
2
2
  import { r as createFilter } from "./plugin-commonjs.mjs";
3
3
 
4
- //#region node_modules/.pnpm/@rollup+plugin-replace@6.0.3_rollup@4.53.2/node_modules/@rollup/plugin-replace/dist/es/index.js
4
+ //#region node_modules/.pnpm/@rollup+plugin-replace@6.0.3_rollup@4.53.3/node_modules/@rollup/plugin-replace/dist/es/index.js
5
5
  function escape(str) {
6
6
  return str.replace(/[-[\]/{}()*+?.\\^$|]/g, "\\$&");
7
7
  }
@@ -1,4 +1,4 @@
1
- import { i as __toESM } from "../_chunks/HT5r2mpP.mjs";
1
+ import { i as __toESM } from "../_chunks/OEiRXl0H.mjs";
2
2
  import { t as require_js_tokens } from "./js-tokens.mjs";
3
3
 
4
4
  //#region node_modules/.pnpm/strip-literal@3.1.0/node_modules/strip-literal/dist/index.mjs
@@ -1,4 +1,4 @@
1
- import { i as __toESM } from "../_chunks/HT5r2mpP.mjs";
1
+ import { i as __toESM } from "../_chunks/OEiRXl0H.mjs";
2
2
  import { t as require_picomatch } from "./picomatch.mjs";
3
3
  import { t as Builder } from "./fdir.mjs";
4
4
  import nativeFs from "fs";
@@ -1,4 +1,4 @@
1
- import { i as __toESM, n as __require, t as __commonJS } from "../_chunks/HT5r2mpP.mjs";
1
+ import { i as __toESM, n as __require, t as __commonJS } from "../_chunks/OEiRXl0H.mjs";
2
2
  import { C as isAbsolute$1, D as parse$2, O as relative$1, T as normalize$2, b as basename$1, f as readPackageJSON, k as resolve$1, m as resolvePackageJSON, w as join$1, x as dirname$1 } from "./c12.mjs";
3
3
  import { t as MagicString } from "./magic-string.mjs";
4
4
  import { n as parse, t as Parser } from "./acorn.mjs";
@@ -1768,7 +1768,7 @@ async function resolveImports(ctx, imports, id) {
1768
1768
  }
1769
1769
 
1770
1770
  //#endregion
1771
- //#region node_modules/.pnpm/unplugin@2.3.10/node_modules/unplugin/dist/context-D49cMElb.js
1771
+ //#region node_modules/.pnpm/unplugin@2.3.11/node_modules/unplugin/dist/context-Csj9j3eN.js
1772
1772
  var import_picomatch$1 = /* @__PURE__ */ __toESM(require_picomatch(), 1);
1773
1773
  function toArray$2(array) {
1774
1774
  array = array || [];
@@ -1878,7 +1878,7 @@ function parse$1(code, opts = {}) {
1878
1878
  }
1879
1879
 
1880
1880
  //#endregion
1881
- //#region node_modules/.pnpm/unplugin@2.3.10/node_modules/unplugin/dist/webpack-like-CSbnjTNU.js
1881
+ //#region node_modules/.pnpm/unplugin@2.3.11/node_modules/unplugin/dist/webpack-like-DFGTNSuV.js
1882
1882
  function transformUse(data, plugin, transformLoader) {
1883
1883
  if (data.resource == null) return [];
1884
1884
  const id = normalizeAbsolutePath(data.resource + (data.resourceQuery || ""));
@@ -1907,15 +1907,16 @@ function normalizeAbsolutePath(path$1) {
1907
1907
  }
1908
1908
 
1909
1909
  //#endregion
1910
- //#region node_modules/.pnpm/unplugin@2.3.10/node_modules/unplugin/dist/context-D_KPTgTH.js
1911
- function createBuildContext(compiler, compilation, loaderContext) {
1910
+ //#region node_modules/.pnpm/unplugin@2.3.11/node_modules/unplugin/dist/context-DkYlx1xL.js
1911
+ function createBuildContext(compiler, compilation, loaderContext, inputSourceMap) {
1912
1912
  return {
1913
1913
  getNativeBuildContext() {
1914
1914
  return {
1915
1915
  framework: "rspack",
1916
1916
  compiler,
1917
1917
  compilation,
1918
- loaderContext
1918
+ loaderContext,
1919
+ inputSourceMap
1919
1920
  };
1920
1921
  },
1921
1922
  addWatchFile(file) {
@@ -1945,7 +1946,7 @@ function normalizeMessage(error) {
1945
1946
  }
1946
1947
 
1947
1948
  //#endregion
1948
- //#region node_modules/.pnpm/unplugin@2.3.10/node_modules/unplugin/dist/utils-C8vphsat.js
1949
+ //#region node_modules/.pnpm/unplugin@2.3.11/node_modules/unplugin/dist/utils-BosfZ0pB.js
1949
1950
  function encodeVirtualModuleId(id, plugin) {
1950
1951
  return resolve(plugin.__virtualModulePrefix, encodeURIComponent(id));
1951
1952
  }
@@ -1995,7 +1996,7 @@ var FakeVirtualModulesPlugin = class FakeVirtualModulesPlugin$1 {
1995
1996
  };
1996
1997
 
1997
1998
  //#endregion
1998
- //#region node_modules/.pnpm/unplugin@2.3.10/node_modules/unplugin/dist/context-BZKy5Nsn.js
1999
+ //#region node_modules/.pnpm/unplugin@2.3.11/node_modules/unplugin/dist/context-OCFO8EW1.js
1999
2000
  function contextOptionsFromCompilation(compilation) {
2000
2001
  return {
2001
2002
  addWatchFile(file) {
@@ -2010,7 +2011,7 @@ const require$1 = createRequire(import.meta.url);
2010
2011
  function getSource(fileSource) {
2011
2012
  return new (require$1("webpack")).sources.RawSource(typeof fileSource === "string" ? fileSource : Buffer.from(fileSource.buffer));
2012
2013
  }
2013
- function createBuildContext$1(options, compiler, compilation, loaderContext) {
2014
+ function createBuildContext$1(options, compiler, compilation, loaderContext, inputSourceMap) {
2014
2015
  return {
2015
2016
  parse: parse$1,
2016
2017
  addWatchFile(id) {
@@ -2031,7 +2032,8 @@ function createBuildContext$1(options, compiler, compilation, loaderContext) {
2031
2032
  framework: "webpack",
2032
2033
  compiler,
2033
2034
  compilation,
2034
- loaderContext
2035
+ loaderContext,
2036
+ inputSourceMap
2035
2037
  };
2036
2038
  }
2037
2039
  };
@@ -2315,7 +2317,7 @@ var require_lib = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/webpack-virtu
2315
2317
  }) });
2316
2318
 
2317
2319
  //#endregion
2318
- //#region node_modules/.pnpm/unplugin@2.3.10/node_modules/unplugin/dist/index.js
2320
+ //#region node_modules/.pnpm/unplugin@2.3.11/node_modules/unplugin/dist/index.js
2319
2321
  var import_lib = /* @__PURE__ */ __toESM(require_lib(), 1);
2320
2322
  const ExtToLoader = {
2321
2323
  ".js": "js",
@@ -2957,7 +2959,7 @@ const LOAD_LOADER$1 = resolve(__dirname, "rspack/loaders/load");
2957
2959
  function getRspackPlugin(factory) {
2958
2960
  return (userOptions) => {
2959
2961
  return { apply(compiler) {
2960
- const VIRTUAL_MODULE_PREFIX = resolve(compiler.options.context ?? process.cwd(), "node_modules/.virtual", process.pid.toString());
2962
+ const VIRTUAL_MODULE_PREFIX = resolve(compiler.options.context ?? process.cwd(), "node_modules/.virtual", compiler.rspack.experiments.VirtualModulesPlugin ? "" : process.pid.toString());
2961
2963
  const meta = {
2962
2964
  framework: "rspack",
2963
2965
  rspack: { compiler }
@@ -9,7 +9,7 @@ import { createHash } from "node:crypto";
9
9
  import { isCSSRequest, normalizePath } from "vite";
10
10
  import assert$1 from "node:assert/strict";
11
11
 
12
- //#region node_modules/.pnpm/@pi0+vite-plugin-fullstack@0.0.5-pr-1297_vite@7.2.2_@types+node@24.10.1_jiti@2.6.1_ligh_8f4b5577cafc954033dce672471a9242/node_modules/@pi0/vite-plugin-fullstack/dist/index.js
12
+ //#region node_modules/.pnpm/@pi0+vite-plugin-fullstack@0.0.5-pr-1297_vite@7.2.4_@types+node@24.10.1_jiti@2.6.1_ligh_846296c70728fc9fa59c1068ee89750f/node_modules/@pi0/vite-plugin-fullstack/dist/index.js
13
13
  function parseIdQuery(id) {
14
14
  if (!id.includes("?")) return {
15
15
  filename: id,
@@ -3,11 +3,9 @@ import {
3
3
  stripAnsi
4
4
  } from "./chunk-4L7RY2JA.js";
5
5
  import {
6
+ BaseComponent,
6
7
  publicDirURL
7
- } from "./chunk-OSUFJZHZ.js";
8
- import {
9
- BaseComponent
10
- } from "./chunk-4YEN7HVQ.js";
8
+ } from "./chunk-PE3GG3TN.js";
11
9
 
12
10
  // src/templates/error_stack_source/main.ts
13
11
  import { extname } from "path";
@@ -1,9 +1,7 @@
1
1
  import {
2
+ BaseComponent,
2
3
  publicDirURL
3
- } from "./chunk-OSUFJZHZ.js";
4
- import {
5
- BaseComponent
6
- } from "./chunk-4YEN7HVQ.js";
4
+ } from "./chunk-PE3GG3TN.js";
7
5
 
8
6
  // src/templates/header/main.ts
9
7
  var DARK_MODE_SVG = `<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" width="15" height="15" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M0 0h24v24H0z" stroke="none"/><path d="M12 3h.393a7.5 7.5 0 0 0 7.92 12.446A9 9 0 1 1 12 2.992z"/></svg>`;
@@ -1,9 +1,7 @@
1
1
  import {
2
+ BaseComponent,
2
3
  publicDirURL
3
- } from "./chunk-OSUFJZHZ.js";
4
- import {
5
- BaseComponent
6
- } from "./chunk-4YEN7HVQ.js";
4
+ } from "./chunk-PE3GG3TN.js";
7
5
 
8
6
  // src/templates/layout/main.ts
9
7
  var Layout = class extends BaseComponent {
@@ -3,11 +3,9 @@ import {
3
3
  htmlEscape
4
4
  } from "./chunk-4L7RY2JA.js";
5
5
  import {
6
+ BaseComponent,
6
7
  publicDirURL
7
- } from "./chunk-OSUFJZHZ.js";
8
- import {
9
- BaseComponent
10
- } from "./chunk-4YEN7HVQ.js";
8
+ } from "./chunk-PE3GG3TN.js";
11
9
 
12
10
  // src/templates/error_stack/main.ts
13
11
  import { dump, themes } from "@poppinss/dumper/html";
@@ -3,11 +3,9 @@ import {
3
3
  wordWrap
4
4
  } from "./chunk-4L7RY2JA.js";
5
5
  import {
6
+ BaseComponent,
6
7
  publicDirURL
7
- } from "./chunk-OSUFJZHZ.js";
8
- import {
9
- BaseComponent
10
- } from "./chunk-4YEN7HVQ.js";
8
+ } from "./chunk-PE3GG3TN.js";
11
9
 
12
10
  // src/templates/error_info/main.ts
13
11
  var ERROR_ICON_SVG = `<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" width="24" height="24" fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 7v6m0 4.01.01-.011M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Z"/></svg>`;
@@ -1,10 +1,12 @@
1
1
  import {
2
- BaseComponent
3
- } from "./chunk-4YEN7HVQ.js";
2
+ BaseComponent,
3
+ publicDirURL
4
+ } from "./chunk-PE3GG3TN.js";
4
5
 
5
6
  // src/templates/error_metadata/main.ts
6
7
  import { dump, themes } from "@poppinss/dumper/html";
7
8
  var ErrorMetadata = class extends BaseComponent {
9
+ cssFile = new URL("./error_metadata/style.css", publicDirURL);
8
10
  #primitives = ["string", "boolean", "number", "undefined"];
9
11
  /**
10
12
  * Formats the error row value
@@ -49,7 +51,7 @@ var ErrorMetadata = class extends BaseComponent {
49
51
  * Renders each group as a card
50
52
  */
51
53
  #renderGroup(group, sections, cspNonce) {
52
- return `<section>
54
+ return `<section class="metadata-group">
53
55
  <div class="card">
54
56
  <div class="card-heading">
55
57
  <h3 class="card-title">${group}</h3>
@@ -56,6 +56,10 @@ var BaseComponent = class {
56
56
  }
57
57
  };
58
58
 
59
+ // src/public_dir.ts
60
+ var publicDirURL = new URL("./public/", import.meta.url);
61
+
59
62
  export {
60
- BaseComponent
63
+ BaseComponent,
64
+ publicDirURL
61
65
  };
@@ -2,11 +2,9 @@ import {
2
2
  colors
3
3
  } from "./chunk-4L7RY2JA.js";
4
4
  import {
5
+ BaseComponent,
5
6
  publicDirURL
6
- } from "./chunk-OSUFJZHZ.js";
7
- import {
8
- BaseComponent
9
- } from "./chunk-4YEN7HVQ.js";
7
+ } from "./chunk-PE3GG3TN.js";
10
8
 
11
9
  // src/templates/error_cause/main.ts
12
10
  import { dump, themes } from "@poppinss/dumper/html";
@@ -1,29 +1,28 @@
1
1
  import {
2
2
  Layout
3
- } from "./chunk-F4I6KX4R.js";
3
+ } from "./chunk-CM7DWJNZ.js";
4
4
  import {
5
5
  ErrorCause
6
- } from "./chunk-PINJDICN.js";
6
+ } from "./chunk-X53OIOJH.js";
7
7
  import {
8
8
  ErrorInfo
9
- } from "./chunk-EUJBVOYB.js";
9
+ } from "./chunk-OIJ3WD7L.js";
10
10
  import {
11
11
  ErrorMetadata
12
- } from "./chunk-HFSXRSKS.js";
12
+ } from "./chunk-P36L72PL.js";
13
13
  import {
14
14
  ErrorStack
15
- } from "./chunk-YYEJ3AGB.js";
15
+ } from "./chunk-EJH674NB.js";
16
16
  import {
17
17
  ErrorStackSource
18
- } from "./chunk-4XB2BYKC.js";
18
+ } from "./chunk-7QV3D5YX.js";
19
19
  import "./chunk-4L7RY2JA.js";
20
20
  import {
21
21
  Header
22
- } from "./chunk-PUHGL6HA.js";
23
- import "./chunk-OSUFJZHZ.js";
22
+ } from "./chunk-AUGPHE32.js";
24
23
  import {
25
24
  BaseComponent
26
- } from "./chunk-4YEN7HVQ.js";
25
+ } from "./chunk-PE3GG3TN.js";
27
26
 
28
27
  // src/youch.ts
29
28
  import { parse } from "cookie-es";
@@ -38,6 +38,7 @@ html.dark {
38
38
  -webkit-font-smoothing: antialiased;
39
39
  -moz-osx-font-smoothing: grayscale;
40
40
  position: relative;
41
+ word-break: break-word;
41
42
  }
42
43
  #error-message svg {
43
44
  margin-top: 1.5px;
@@ -0,0 +1,3 @@
1
+ .metadata-group .card-subtitle + span {
2
+ word-break: break-word;
3
+ }
@@ -75,6 +75,7 @@ html.dark {
75
75
 
76
76
  .stack-frame-filepath {
77
77
  max-width: 100%;
78
+ word-wrap: break-word;
78
79
  }
79
80
 
80
81
  .stack-frame-location {
@@ -93,9 +94,7 @@ html.dark {
93
94
 
94
95
  .stack-frame-location a {
95
96
  text-decoration: none;
96
- white-space: nowrap;
97
- overflow: hidden;
98
- text-overflow: ellipsis;
97
+ text-align: left;
99
98
  }
100
99
  .stack-frame-location span {
101
100
  white-space: nowrap;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "youch",
3
3
  "description": "Pretty print JavaScript errors on the Web and the Terminal",
4
- "version": "4.1.0-beta.12",
4
+ "version": "4.1.0-beta.13",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "build",
@@ -12,7 +12,7 @@ export default defineHandler((event) => {
12
12
  title: "Nitro Server Routes",
13
13
  ...runtimeConfig.nitro?.openAPI?.meta
14
14
  };
15
- const { paths, globals: { components,...globalsRest } } = getHandlersMeta();
15
+ const { paths, globals: { components, ...globalsRest } } = getHandlersMeta();
16
16
  const extensible = Object.fromEntries(Object.entries(globalsRest).filter(([key]) => key.startsWith("x-")));
17
17
  return {
18
18
  openapi: "3.1.0",
@@ -38,7 +38,7 @@ function getHandlersMeta() {
38
38
  const { route, parameters } = normalizeRoute(h.route || "");
39
39
  const tags = defaultTags(h.route || "");
40
40
  const method = (h.method || "get").toLowerCase();
41
- const { $global,...openAPI } = h.meta?.openAPI || {};
41
+ const { $global, ...openAPI } = h.meta?.openAPI || {};
42
42
  const item = { [method]: {
43
43
  tags,
44
44
  parameters,
package/dist/vite.mjs CHANGED
@@ -33,7 +33,7 @@ import "./_libs/plugin-alias.mjs";
33
33
  import "./_libs/estree-walker.mjs";
34
34
  import "./_libs/plugin-commonjs.mjs";
35
35
  import "./_libs/plugin-inject.mjs";
36
- import "./_chunks/D7BPzaXW.mjs";
36
+ import "./_chunks/BEZ4Lko0.mjs";
37
37
  import "./_libs/remapping.mjs";
38
38
  import "./_libs/unwasm.mjs";
39
39
  import "./_libs/plugin-replace.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nitro-nightly",
3
- "version": "3.0.1-20251124-135409-0c8b5392",
3
+ "version": "3.0.1-20251125-140343-cd142cc3",
4
4
  "description": "Build and Deploy Universal JavaScript Servers",
5
5
  "homepage": "https://nitro.build",
6
6
  "repository": "nitrojs/nitro",
@@ -63,11 +63,11 @@
63
63
  "db0": "^0.3.4",
64
64
  "h3": "2.0.1-rc.5",
65
65
  "jiti": "^2.6.1",
66
- "nf3": "^0.1.10",
66
+ "nf3": "^0.1.12",
67
67
  "ofetch": "^2.0.0-alpha.3",
68
68
  "ohash": "^2.0.11",
69
- "oxc-minify": "^0.97.0",
70
- "oxc-transform": "^0.97.0",
69
+ "oxc-minify": "^0.99.0",
70
+ "oxc-transform": "^0.99.0",
71
71
  "srvx": "^0.9.6",
72
72
  "undici": "^7.16.0",
73
73
  "unenv": "^2.0.0-rc.24",
@@ -76,9 +76,8 @@
76
76
  "devDependencies": {
77
77
  "@azure/functions": "^3.5.1",
78
78
  "@azure/static-web-apps-cli": "^2.0.7",
79
- "@cloudflare/workers-types": "^4.20251115.0",
79
+ "@cloudflare/workers-types": "^4.20251125.0",
80
80
  "@deno/types": "^0.0.1",
81
- "rollup": "^4.53.2",
82
81
  "@hiogawa/vite-plugin-fullstack": "npm:@pi0/vite-plugin-fullstack@0.0.5-pr-1297",
83
82
  "@netlify/edge-functions": "^3.0.2",
84
83
  "@netlify/functions": "^5.1.0",
@@ -88,19 +87,19 @@
88
87
  "@rollup/plugin-json": "^6.1.0",
89
88
  "@rollup/plugin-node-resolve": "^16.0.3",
90
89
  "@rollup/plugin-replace": "^6.0.3",
91
- "@scalar/api-reference": "^1.39.3",
92
- "@types/aws-lambda": "^8.10.157",
90
+ "@scalar/api-reference": "^1.40.0",
91
+ "@types/aws-lambda": "^8.10.159",
93
92
  "@types/estree": "^1.0.8",
94
93
  "@types/etag": "^1.8.4",
95
94
  "@types/fs-extra": "^11.0.4",
96
95
  "@types/http-proxy": "^1.17.17",
97
- "@types/node": "^24.10.0",
96
+ "@types/node": "^24.10.1",
98
97
  "@types/node-fetch": "^2.6.13",
99
98
  "@types/semver": "^7.7.1",
100
99
  "@types/xml2js": "^0.4.14",
101
- "@vitest/coverage-v8": "^4.0.9",
100
+ "@vitest/coverage-v8": "^4.0.13",
102
101
  "automd": "^0.4.2",
103
- "c12": "^3.3.1",
102
+ "c12": "^3.3.2",
104
103
  "changelogen": "^0.6.2",
105
104
  "chokidar": "^4.0.3",
106
105
  "citty": "^0.1.6",
@@ -128,10 +127,10 @@
128
127
  "knitwork": "^1.3.0",
129
128
  "magic-string": "^0.30.21",
130
129
  "mime": "^4.1.0",
131
- "miniflare": "^4.20251109.1",
130
+ "miniflare": "^4.20251118.1",
132
131
  "mlly": "^1.8.0",
133
132
  "nypm": "^0.6.2",
134
- "obuild": "^0.4.1",
133
+ "obuild": "^0.4.3",
135
134
  "pathe": "^2.0.3",
136
135
  "perfect-debounce": "^2.0.0",
137
136
  "pkg-types": "^2.3.0",
@@ -139,8 +138,9 @@
139
138
  "pretty-bytes": "^7.1.0",
140
139
  "react": "^19.2.0",
141
140
  "rendu": "^0.0.7",
142
- "rolldown": "^1.0.0-beta.50",
143
- "rolldown-vite": "^7.2.5",
141
+ "rolldown": "1.0.0-beta.51",
142
+ "rolldown-vite": "^7.2.7",
143
+ "rollup": "^4.53.3",
144
144
  "rou3": "^0.7.10",
145
145
  "scule": "^1.3.0",
146
146
  "semver": "^7.7.3",
@@ -157,16 +157,16 @@
157
157
  "unimport": "^5.5.0",
158
158
  "untyped": "^2.0.0",
159
159
  "unwasm": "^0.5.0",
160
- "vitest": "^4.0.9",
161
- "wrangler": "^4.46.0",
160
+ "vitest": "^4.0.13",
161
+ "wrangler": "^4.50.0",
162
162
  "xml2js": "^0.6.2",
163
- "youch": "^4.1.0-beta.12",
163
+ "youch": "4.1.0-beta.13",
164
164
  "youch-core": "^0.3.3"
165
165
  },
166
166
  "peerDependencies": {
167
167
  "rolldown": "*",
168
- "vite": "^7",
169
168
  "rollup": "^4",
169
+ "vite": "^7",
170
170
  "xml2js": "^0.6.2"
171
171
  },
172
172
  "peerDependenciesMeta": {
@@ -1,6 +0,0 @@
1
- // src/public_dir.ts
2
- var publicDirURL = new URL("./public/", import.meta.url);
3
-
4
- export {
5
- publicDirURL
6
- };