Search code examples
reactjsreact-server

react web dev server not detecting changes to sass files live


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


Solution

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

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