vue.config.js 274 B

12345678910111213141516
  1. const webPackConfig = require('./webpack.config');
  2. module.exports = {
  3. configureWebpack:webPackConfig,
  4. css:{
  5. loaderOptions:{
  6. sass:{
  7. prependData:`@import "./src/assets/scss/variable/index.scss";`
  8. }
  9. }
  10. }
  11. }