@@ -8,6 +8,7 @@ let cssFileName: string;
8
8
9
9
export function navitaRemix ( options ?: Options ) : Plugin [ ] {
10
10
let isProduction = false ;
11
+ let hasEmittedCss = false ;
11
12
12
13
const { renderChunk, ...navitaVite } = navita ( options ) ;
13
14
@@ -25,8 +26,11 @@ export function navitaRemix(options?: Options): Plugin[] {
25
26
26
27
return `${ code } \n${ remixServerBuildExtension } ` ;
27
28
} ,
28
- renderChunk ( _ , chunk ) {
29
- if ( chunk . name === "root" ) {
29
+ renderChunk ( _ , chunk , options ) {
30
+ const isServerChunk = options . dir . endsWith ( '/server' ) ;
31
+ const isClientChunk = options . dir . endsWith ( '/client' ) ;
32
+
33
+ if ( isClientChunk && chunk . name === "root" ) {
30
34
// Generate a random name for the CSS file.
31
35
// Vite uses a file hash as the name, but since the client build will finish before
32
36
// the server build, we need to generate a random name for the CSS file.
@@ -39,12 +43,11 @@ export function navitaRemix(options?: Options): Plugin[] {
39
43
40
44
cssFileName = `assets/navita-${ random } .css` ;
41
45
42
- // Attach the file to the root chunk so that it's included in the client build.
43
- chunk . viteMetadata ?. importedCss . add ( cssFileName ) ;
46
+ chunk . viteMetadata . importedCss . add ( cssFileName ) ;
44
47
return ;
45
48
}
46
49
47
- if ( chunk . name === 'server-build' ) {
50
+ if ( isServerChunk && ! hasEmittedCss ) {
48
51
// In the server-build, we'll generate the CSS and emit it as an asset.
49
52
// Remix will then move it to the client assets.
50
53
this . emitFile ( {
@@ -53,6 +56,8 @@ export function navitaRemix(options?: Options): Plugin[] {
53
56
type : 'asset' ,
54
57
source : getRenderer ( ) ?. engine . renderCssToString ( ) ,
55
58
} ) ;
59
+
60
+ hasEmittedCss = true ;
56
61
}
57
62
} ,
58
63
}
0 commit comments