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/js/
resources/css/ resources/css/
src/css/ pages/css/
.vscode/ .vscode/
share/ share/
node_modules/ node_modules/

View File

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

View File

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