美文网首页
create-react-app脚手架中配置sass

create-react-app脚手架中配置sass

作者: 徐国军_plus | 来源:发表于2018-02-20 22:49 被阅读615次

首先将你的文件名称改成scss结尾的文件。

然后安装依赖:

 cnpm install sass-loader node-sass --save-dev

找到webpack.config.dev.js文件和webpack.config.prod.js文件,将module配置项的最后一项配置改成如下:

{
    loader: require.resolve('file-loader'),
    // Exclude `js` files to keep "css" loader working as it injects
    // it's runtime that would otherwise processed through "file" loader.
    // Also exclude `html` and `json` extensions so they get processed
    // by webpacks internal loaders.
    exclude: [/\.js$/, /\.html$/, /\.json$/,/\.scss$/],
    options: {
         name: 'static/media/[name].[hash:8].[ext]',
    },
},
{
    test: /\.scss$/,
    loaders: ['style-loader', 'css-loader', 'sass-loader'],
}

到此,配置完毕,记得两个文件都要改

相关文章

网友评论

      本文标题:create-react-app脚手架中配置sass

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