nitropack-nightly 2.11.9-20250403-232319.7e2e1015 → 2.11.9-20250404-101712.06d78bfc
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/meta/index.mjs
CHANGED
|
@@ -203,7 +203,13 @@ export async function writeWranglerConfig(nitro, cfTarget) {
|
|
|
203
203
|
);
|
|
204
204
|
overrides.assets = {
|
|
205
205
|
binding: "ASSETS",
|
|
206
|
-
directory: relative(
|
|
206
|
+
directory: relative(
|
|
207
|
+
wranglerConfigDir,
|
|
208
|
+
resolve(
|
|
209
|
+
nitro.options.output.publicDir,
|
|
210
|
+
"..".repeat(nitro.options.baseURL.split("/").filter(Boolean).length)
|
|
211
|
+
)
|
|
212
|
+
)
|
|
207
213
|
};
|
|
208
214
|
}
|
|
209
215
|
const { config: userConfig = {} } = await readWranglerConfig(nitro);
|
package/package.json
CHANGED