Basic window now uses the correct css paths for building

This commit is contained in:
shockrah 2020-12-06 15:26:22 -08:00
parent 455f6ed6b3
commit 2683d5ef15
3 changed files with 6 additions and 6 deletions

View File

@ -7,7 +7,7 @@ static/css/
resources/js/
resources/css/
src/css/
pages/css/
.vscode/
share/
node_modules/

View File

@ -4,8 +4,8 @@
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
<link rel="stylesheet" href="../../libs/css/pure.css"/>
<link rel="stylesheet" href="../css/style.css"/>
<link rel="stylesheet" href="../libs/css/pure.css"/>
<link rel="stylesheet" href="css/style.css"/>
<title>Freechat</title>
</head>
<body>

View File

@ -1,7 +1,7 @@
#!/bin/sh
sassDir='src/sass/'
cssDir='src/css/'
sassDir='sass/'
cssDir='pages/css/'
build() {
for i in $sassDir/*;do
@ -18,4 +18,4 @@ watch() {
sass --watch $pairs
}
"$@"
"$@"