Skip to content

Commit cafa840

Browse files
authored
more robust way of determining where a chunk belongs (#64)
1 parent bf6afc9 commit cafa840

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

.changeset/unlucky-humans-leave.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@navita/vite-plugin': patch
3+
---
4+
5+
Use options to determine if chunk belongs in server or client build

examples/with-remix/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"dev": "remix vite:dev --force",
99
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
1010
"start": "remix-serve ./build/server/index.js",
11+
"preview": "remix vite:build && remix-serve ./build/server/index.js",
1112
"typecheck": "tsc"
1213
},
1314
"dependencies": {

packages/vite-plugin/src/remix.ts

+10-5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ let cssFileName: string;
88

99
export function navitaRemix(options?: Options): Plugin[] {
1010
let isProduction = false;
11+
let hasEmittedCss = false;
1112

1213
const { renderChunk, ...navitaVite } = navita(options);
1314

@@ -25,8 +26,11 @@ export function navitaRemix(options?: Options): Plugin[] {
2526

2627
return `${code}\n${remixServerBuildExtension}`;
2728
},
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") {
3034
// Generate a random name for the CSS file.
3135
// Vite uses a file hash as the name, but since the client build will finish before
3236
// the server build, we need to generate a random name for the CSS file.
@@ -39,12 +43,11 @@ export function navitaRemix(options?: Options): Plugin[] {
3943

4044
cssFileName = `assets/navita-${random}.css`;
4145

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);
4447
return;
4548
}
4649

47-
if (chunk.name === 'server-build') {
50+
if (isServerChunk && !hasEmittedCss) {
4851
// In the server-build, we'll generate the CSS and emit it as an asset.
4952
// Remix will then move it to the client assets.
5053
this.emitFile({
@@ -53,6 +56,8 @@ export function navitaRemix(options?: Options): Plugin[] {
5356
type: 'asset',
5457
source: getRenderer()?.engine.renderCssToString(),
5558
});
59+
60+
hasEmittedCss = true;
5661
}
5762
},
5863
}

0 commit comments

Comments
 (0)