Basic window now uses the correct css paths for building
This commit is contained in:
parent
455f6ed6b3
commit
2683d5ef15
2
freechat-client/.gitignore
vendored
2
freechat-client/.gitignore
vendored
@ -7,7 +7,7 @@ static/css/
|
||||
resources/js/
|
||||
resources/css/
|
||||
|
||||
src/css/
|
||||
pages/css/
|
||||
.vscode/
|
||||
share/
|
||||
node_modules/
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
}
|
||||
|
||||
"$@"
|
||||
"$@"
|
||||
|
Loading…
Reference in New Issue
Block a user