vue3.0 配置全局引入scss文件

配置vue.config.js

文件中写入:

module.exports = {
 ...   //其他代码

  css: {
      loaderOptions: {
          sass: {
            data: `
                  @import "@/config/common.scss";//@指向src目录
            `
        }
      }
  }
}

猜你喜欢

转载自www.cnblogs.com/gosh-hash/p/10872882.html