File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { normalizeViteManifest } from 'vue-bundle-renderer'
88import type { Manifest } from 'vue-bundle-renderer'
99import type { ViteBuildContext } from './vite'
1010
11- export async function writeManifest ( ctx : ViteBuildContext ) {
11+ export async function writeManifest ( ctx : ViteBuildContext , css : string [ ] = [ ] ) {
1212 // Write client manifest for use in vue-bundle-renderer
1313 const clientDist = resolve ( ctx . nuxt . options . buildDir , 'dist/client' )
1414 const serverDist = resolve ( ctx . nuxt . options . buildDir , 'dist/server' )
@@ -17,7 +17,7 @@ export async function writeManifest (ctx: ViteBuildContext) {
1717 '@vite/client' : {
1818 isEntry : true ,
1919 file : '@vite/client' ,
20- css : [ ] ,
20+ css,
2121 module : true ,
2222 resourceType : 'script' ,
2323 } ,
You can’t perform that action at this time.
0 commit comments