remove non-ascii characters

This commit is contained in:
Conduitry 2020-02-02 12:44:37 -05:00
parent d78108ca29
commit 929052a297
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
*Psst — looking for a shareable component template? Go here --> [sveltejs/component-template](https://github.com/sveltejs/component-template)* *Looking for a shareable component template? Go here --> [sveltejs/component-template](https://github.com/sveltejs/component-template)*
--- ---

View file

@ -19,7 +19,7 @@ export default {
// enable run-time checks when not in production // enable run-time checks when not in production
dev: !production, dev: !production,
// we'll extract any component CSS out into // we'll extract any component CSS out into
// a separate file better for performance // a separate file - better for performance
css: css => { css: css => {
css.write('public/build/bundle.css'); css.write('public/build/bundle.css');
} }
@ -27,7 +27,7 @@ export default {
// If you have external dependencies installed from // If you have external dependencies installed from
// npm, you'll most likely need these plugins. In // npm, you'll most likely need these plugins. In
// some cases you'll need additional configuration // some cases you'll need additional configuration -
// consult the documentation for details: // consult the documentation for details:
// https://github.com/rollup/plugins/tree/master/packages/commonjs // https://github.com/rollup/plugins/tree/master/packages/commonjs
resolve({ resolve({