react web dev server not detecting changes to sass files live

475 Views Asked by At

My react app was created with npx create-react-app and is not loading the changes on the local server for changes made in the styles folder. here is the git repo , https://github.com/saulvg1/bottega-final

1

There are 1 best solutions below

0
On BEST ANSWER

ensure that the webpack.config.js file have the entry with scss or css file type

resolve: {
        extensions: ['.js', '.jsx','css','scss']
    },