Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/transforms/pipeline/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import type {
TransformResult,
} from "./types.ts";
import {
browserServerExportsStripPlugin,
compilePlugin,
cssStripPlugin,
finalizePlugin,
Expand Down Expand Up @@ -50,6 +51,7 @@ const BROWSER_PIPELINE: TransformPlugin[] = [
parsePlugin,
compilePlugin,
cssStripPlugin, // Strip CSS imports before they hit import resolution
browserServerExportsStripPlugin, // Drop server-only hooks + their now-unused imports
resolveImportsPlugin, // Unified import resolution
finalizePlugin,
];
Expand Down
Loading