For days I've been trying to set up a react project wether with react-create-app or my own webpack configuration that integrates scss in some way. I always get some weird dependency issue with wepack (can't find right version whether it be 2.2.1 or 1.4.1). Does anyone have an idea about how I would go about doing this?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
This is how I do it
package.json dependencies :
"css-loader": "^0.26.1",
"node-sass": "^4.4.0",
"sass-loader": "^4.1.1"
(or whatever the latest version are)
webpack.config.js module loaders :
{
test: /\.scss$/,
loader: 'style-loader!css-loader!sass-loader'
}
inside your code (root file if possible)
import './<your style path>/<your style file>.scss'