I am trying to prepend scss files to my project. Here is my vue.config.js:
const {defineConfig} = require('@vue/cli-service');
module.exports = defineConfig({
    transpileDependencies: true,
    css: {
        loaderOptions: {
            scss: {
                sassOptions: {
                    content: "~@/assets/styles/base/_colors.scss;"
                }
            }
        }
    }
});
But scss is not loaded (look at the screenshot). I am using Vue3, [email protected], [email protected]
 

P.S. with node-sass it worker fine
 
                        
My vue.config.js :
Works fine for me