[Vuejs]-Can't override Bulma variables using Vue Loader

0👍

This should work in vue.config.js if your project is built via vue-cli

module.exports = {
  css: {
    loaderOptions: {
      sass: {
        data: `
          @import "@/scss/_variables.scss";
          @import "@/scss/_mixins.scss";
        `
      }
    }
  }
};

and assume you have npm install --save-dev node-sass sass-loader

Leave a comment