Skip to content

Commit eccf663

Browse files
bluwypatak-dev
andauthored
fix(css)!: remove default import in ssr dev (#17922)
Co-authored-by: patak <583075+patak-dev@users.noreply.github.com>
1 parent 61cbf6f commit eccf663

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

packages/vite/src/node/plugins/css.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -539,13 +539,12 @@ export function cssPostPlugin(config: ResolvedConfig): Plugin {
539539
if (isDirectCSSRequest(id)) {
540540
return null
541541
}
542-
// server only
543-
if (this.environment.config.consumer !== 'client') {
544-
return modulesCode || `export default ${JSON.stringify(css)}`
545-
}
546542
if (inlined) {
547543
return `export default ${JSON.stringify(css)}`
548544
}
545+
if (this.environment.config.consumer === 'server') {
546+
return modulesCode || 'export {}'
547+
}
549548

550549
const cssContent = await getContentWithSourcemap(css)
551550
const code = [

packages/vite/src/node/ssr/runtime/__tests__/server-runtime.spec.ts

+1-6
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,7 @@ describe('module runner initialization', async () => {
3232

3333
it('css is loaded correctly', async ({ runner }) => {
3434
const css = await runner.import('/fixtures/test.css')
35-
expect(css.default).toMatchInlineSnapshot(`
36-
".test {
37-
color: red;
38-
}
39-
"
40-
`)
35+
expect(css.default).toBe(undefined)
4136
const module = await runner.import('/fixtures/test.module.css')
4237
expect(module).toMatchObject({
4338
default: {

0 commit comments

Comments
 (0)