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/js/
|
||||||
resources/css/
|
resources/css/
|
||||||
|
|
||||||
src/css/
|
pages/css/
|
||||||
.vscode/
|
.vscode/
|
||||||
share/
|
share/
|
||||||
node_modules/
|
node_modules/
|
||||||
|
@ -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>
|
||||||
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
"$@"
|
"$@"
|
||||||
|
Loading…
Reference in New Issue
Block a user