I found the solution I just had to add the following rule to webpack.config file and install css-loader style-loader and sass-loader
{
test: /\.scss$/,
use: ['style-loader', 'css-loader', 'sass-loader']
}