We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f92c962 commit 496c91bCopy full SHA for 496c91b
bin/clean.js
@@ -54,7 +54,10 @@ const main = () => {
54
55
const manifestAssets = isSsr
56
? manifestFiles.flatMap(key => manifest[key])
57
- : manifestFiles.map(key => manifest[key].file)
+ : manifestFiles.flatMap(key => [
58
+ ...manifest[key].css ?? [],
59
+ manifest[key].file,
60
+ ])
61
62
const assetsPath = argument('assets') ?? dirname(foundManifestPath)+'/assets'
63
0 commit comments