Answers for "how to use sass using in vuejs3/vite globally"

0

vue global scss

module.exports = {
  css: {
    loaderOptions: {
      sass: {
        prependData: `
          @import "@/assets/scss/main.scss";
        `
      }
    }
  }
};
Posted by: Guest on October-06-2021
1

vue js sass

# /!\ if you work with [email protected], it seems [email protected] doesn't work
# So, in terminal:
yarn add node-sass [email protected]
Posted by: Guest on April-06-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language