Skip to content

Commit

Permalink
Fix stylesheet references (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
wlach committed Oct 7, 2020
1 parent ffa0e2b commit 5e78700
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
<title>Glean Dictionary Prototype</title>

<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="stylesheet" href="/global.css" />
<link rel="stylesheet" href="/build/bundle.css" />
<link rel="stylesheet" href="global.css" />
<link rel="stylesheet" href="build/bundle.css" />

<script defer src="/build/bundle.js"></script>
<script defer src="build/bundle.js"></script>
</head>

<body></body>
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default {
// a separate file - better for performance
preprocess: sveltePreprocess({ postcss: true }),
css: (css) => {
css.write("public/build/bundle.css");
css.write("bundle.css");
},
}),

Expand Down

0 comments on commit 5e78700

Please sign in to comment.