Rocket config changed to match the .env
build-sass configuration chanced from using sass to sassc
This commit is contained in:
parent
b29cbed17c
commit
58fcb99e03
@ -8,5 +8,5 @@ address="localhost"
|
||||
port=8080
|
||||
templates_dir="static/html/"
|
||||
|
||||
[global.databases.freechat_sample_db ]
|
||||
url = "mysql://freechat_dev:password@localhost:3306/freechat"
|
||||
[global.databases.freechat]
|
||||
url = "mysql://freechat_dev:password@localhost:3306/freechat"
|
||||
|
@ -5,7 +5,7 @@ cssDir='static/css/'
|
||||
|
||||
build() {
|
||||
for i in $sassDir/*;do
|
||||
sass $i $cssDir/`basename -s .scss $i`.css
|
||||
sassc $i $cssDir/`basename -s .scss $i`.css
|
||||
done
|
||||
}
|
||||
|
||||
@ -14,7 +14,7 @@ watch() {
|
||||
for i in $sassDir*;do
|
||||
pairs="$i:$cssDir`basename -s .scss $i`.css $pairs"
|
||||
done
|
||||
sass --watch $pairs
|
||||
sassc --watch $pairs
|
||||
}
|
||||
|
||||
"$@"
|
||||
|
Loading…
Reference in New Issue
Block a user