Skip to content

Commit

Permalink
fix: default to 'inject' css option in Svelte transformer (#955)
Browse files Browse the repository at this point in the history
fix, default to 'inject' css option  in Svelte transformer
  • Loading branch information
JoacoEsteban committed Apr 25, 2024
1 parent 038d763 commit 08a1501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/parcel-transformer-svelte/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default new Transformer({
return {
compilerOptions: {
dev: options.mode !== "production",
css: "external",
css: "injected",
...compilerOptions
} as CompileOptions,
preprocess: contents.preprocess,
Expand Down

0 comments on commit 08a1501

Please sign in to comment.