forked from elk-zone/elk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
diff --git a/dist/shared/nitro.c8278d90.mjs b/dist/shared/nitro.c8278d90.mjs | ||
index 9ba312fc248da3731720ee7e3b38ba2a85537657..3cd508f0720adb959d94e40c124382ec0110d92c 100644 | ||
index 9ba312fc248da3731720ee7e3b38ba2a85537657..5ec9f06ccf60259820586715d73d41466daa8cff 100644 | ||
--- a/dist/shared/nitro.c8278d90.mjs | ||
+++ b/dist/shared/nitro.c8278d90.mjs | ||
@@ -1298,7 +1298,7 @@ async function copyPublicAssets(nitro) { | ||
@@ -1296,7 +1296,7 @@ async function copyPublicAssets(nitro) { | ||
if (nitro.options.noPublicDir) { | ||
return; | ||
} | ||
for (const asset of nitro.options.publicAssets) { | ||
- for (const asset of nitro.options.publicAssets) { | ||
+ for (const asset of [...nitro.options.publicAssets].reverse()) { | ||
if (await isDirectory(asset.dir)) { | ||
- await fse.copy(asset.dir, join(nitro.options.output.publicDir, asset.baseURL)); | ||
+ await fse.copy(asset.dir, join(nitro.options.output.publicDir, asset.baseURL), { override: false }); | ||
} | ||
} | ||
if (nitro.options.compressPublicAssets) { | ||
await fse.copy(asset.dir, join(nitro.options.output.publicDir, asset.baseURL)); | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.