Whi i cant make changes to html and css after webpack setup

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']
            }