Nilo

Results 3 comments of Nilo

Had the same issue. Fixed by changing `remix.confix.js` **from**: ```js module.exports = { ignoredRouteFiles: [".*"], }; ``` **to**: ```js module.exports = { cacheDirectory: "./node_modules/.cache/remix", ignoredRouteFiles: [".*", "**/*.css", "**/*.test.{js,jsx,ts,tsx}"], }; ```

@mikeybinnswebdesign wish it was a prank. I tried everything mentioned in this thread, the only thing that worked was the change in `remix.config.js`. I undid the change reload stopped working,...

Thanks @nuno-morais I will take a look.