Skip to content

Commit

Permalink
Try fix scss file combine in vite 🐛
Browse files Browse the repository at this point in the history
  • Loading branch information
Freymaurer committed Jul 17, 2023
1 parent f1afa6a commit f7066ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<link rel="shortcut icon" type="image/png" href="./img/favicon-32x32.png" sizes="32x32" />
<link rel="shortcut icon" type="image/png" href="./img/favicon-16x16.png" sizes="16x16" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" />
<link id="style-dark" rel="stylesheet" type="text/css" href="./styles/styles_dark.scss" />
<link id="style-light" rel="stylesheet" type="text/css" href="./styles/styles_light.scss" />
<link id="style-light" rel="stylesheet" type="text/css" href="./styles/styles_light.scss" media="(prefers-color-scheme: light)"/>
<link id="style-dark" rel="stylesheet" type="text/css" href="./styles/styles_dark.scss" media="(prefers-color-scheme: dark)"/>
<link rel="stylesheet" type="text/css" href="./styles/styles.css" />
<style>
html {
Expand Down
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ export default defineConfig({
base: "./",
root: "./src",
build: {
outDir: "../docs",
outDir: "../docs"
}
})

0 comments on commit f7066ef

Please sign in to comment.