You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would you let me know is it possible to have let's say _variables.scss file, which will be available from components .scss files?
For example,
_variables.scss contains
$blue:'blue';
which can be imported in footer.scss like a:
a {color:$blue}
Thanks in advance!
Update:
I have switched loader to sass-resources-loader, so my global.js rule looks like this one:
Is that correct?
{test: /\.scss$/,use: ['style-loader','css-loader','postcss-loader','sass-loader',{loader: 'sass-resources-loader',options: {// Provide path to the file with resourcesresources: './src/assets/styles/_vars.scss'},},],}
The text was updated successfully, but these errors were encountered:
Great starter, I'm loving it.
Would you let me know is it possible to have let's say _variables.scss file, which will be available from components .scss files?
For example,
_variables.scss contains
which can be imported in footer.scss like a:
Thanks in advance!
Update:
I have switched loader to sass-resources-loader, so my global.js rule looks like this one:
Is that correct?
The text was updated successfully, but these errors were encountered: