だから、これは私のうなり声の中にあるものです:
concat: {
css: {
src: [
'assets/**.scss.liquid', 'assets/**.css'
],
dest: 'assets/build.scss.liquid',
}
},
sass: {
dist: {
options: {
style: 'compressed',
sourcemap: 'none',
noCache: true
},
files: {
'assets/build.css.liquid':'assets/build.scss.liquid'
}
}
}
SCSS:
.all-collection {
padding-top: 50px;
height: 100%;
width: 100%;
color: white !important;
justify-content: center;
display: flex;
p {
color: white !important;
}
}
grunt concat
andを実行した後に返されるものは次のgrunt sass
とおりです。
Error: Invalid CSS after "50px": expected expression (e.g. 1px, bold), was ";"
on line 2 of all-collection.scss
;
指定していた行の を削除しようとしましたが、エラーは;
. なぜこのエラーが発生するのかわかりません。