Nuxtアプリケーションを制作しており、UIにはVuetifyを使用しています。
bodyの背景色を変更するためにvariables.scss
にてSass変数を上書きしているのですが、ブラウザ上では思い通りに変更されているものの、エディタ上では構文エラーが検出されます。
)
や;
が足りないと出ますが、書き足してみても逆にコンパイルできないレベルで構文エラーになるだけで、よくわかりませんでした。原因を教えていただきたいです。
##ソースコード
sass
16 @import '~vuetify/src/styles/styles.sass'; 2 38 $material-light: map-merge($material-light, ( 49 'background': var(--v-background-base, map-get($material-light, 'background'))!important, 510 )); 6 712 $font-size-root: 14px;
##ビルド後のCSS
css
1background: var(--v-background-base, #FFFFFF) !important;
##エラーメッセージ
) expected [9, 81] semi-colon expected [10, 2]
###nuxt.config.jsでの指定部分
nuxt.config.js
1vuetify: { 2 customVariables: ['~/assets/variables.scss'], 3 treeShake: true, 4 theme: { 5 options: { 6 customProperties: true 7 }, 8 light: true, 9 themes: { 10 light: { 11 background: '#f5f5f5', 12 primary: '#00ced1', 13 secondary: '#f08080', 14 accent: '#9370db', 15 error: '#2f4f4f' 16 } 17 } 18 } 19 },
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。