Skip to content

Commit

Permalink
fix für css bug svelte plugin 6
Browse files Browse the repository at this point in the history
  • Loading branch information
hmt committed Aug 27, 2020
1 parent caa2aba commit 15210b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 27 deletions.
6 changes: 0 additions & 6 deletions build/build/bundle.css

This file was deleted.

18 changes: 0 additions & 18 deletions build/build/bundle.css.map

This file was deleted.

6 changes: 3 additions & 3 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ export default [
plugins: [
svelte({
dev: !production,
css: css => {
css.write("build/bundle.css");
},
css: function (css) {
css.write('bundle.css');
},
onwarn: (warning, handler) => {
// if (warning.code === 'a11y-label-has-associated-control') return;
handler(warning);
Expand Down

0 comments on commit 15210b8

Please sign in to comment.