Skip to content

Commit

Permalink
fix(rollup): fix option to avoid warning (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
byr-gdp authored Jun 16, 2021
1 parent be73586 commit 2f1490d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion examples/basic-routing/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ export default {
plugins: [
svelte({
// enable run-time checks when not in production
dev: true,
compilerOptions: {
dev: true,
},
}),
// we'll extract any component CSS out into
// a separate file better for performance
Expand Down
4 changes: 3 additions & 1 deletion examples/dynamic-imports/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ export default {
plugins: [
svelte({
// enable run-time checks when not in production
dev: true,
compilerOptions: {
dev: true,
},
}),
// we'll extract any component CSS out into
// a separate file better for performance
Expand Down

0 comments on commit 2f1490d

Please sign in to comment.