美文网首页
sass全局变量

sass全局变量

作者: DTripper | 来源:发表于2020-09-30 10:12 被阅读0次

    npm eject 显示隐藏文件

    npm install sass-resources-loader -D

    /**
    * webpack.config.js
    * 新增concat部分
    * 
    */
    
    //react,项目中所有scss文件均可使用变量和方法,无需再次单独引入
    {
        test: sassRegex,
        exclude: sassModuleRegex,
        use: getStyleLoaders(
        {
            importLoaders: 3,
            sourceMap: isEnvProduction && shouldUseSourceMap,
        },
        'sass-loader'
        ).concat({
            loader:'sass-resources-loader',
            optionss:{
                resources:[
                    //这里按照实际文件路径填写
                    path.resolve(__dirname,'./../src/styles/main.scss')
                ]
            }
        }),
        // Don't consider CSS imports dead code even if the
        // containing package claims to have no side effects.
        // Remove this when webpack adds a warning or an error for this.
        // See https://github.com/webpack/webpack/issues/6571
        sideEffects: true,
    },
    

    相关文章

      网友评论

          本文标题:sass全局变量

          本文链接:https://www.haomeiwen.com/subject/wdruuktx.html