Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/generators/legacy-html/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export default {
// Removes the current assets directory to copy the new assets
// and prevent stale assets from existing in the output directory
// If the path does not exists, it will simply ignore and continue
await rm(assetsFolder, { recursive: true, force: true });
await rm(assetsFolder, { recursive: true, force: true, maxRetries: 10 });

// We copy all the other assets to the output folder at the end of the process
// to ensure that all latest changes on the styles are applied to the output
Expand Down
Loading