# Troubleshooting
# Known issues
# Node-SASS Docker installation
Node Sass could not find a binding for your current environment: Linux/musl 64-bit with Node.js 11.x
Issue: Dependency version mismatch
Rectification:
- Delete
node_modules
folder - Add
node_modules
to a new.dockerignore
folder
# Safari infinite loop on hot reloads
In nuxt.config.js, add the following:
{
build: {
devMiddleware: {
headers: {
'Cache-Control': 'no-store',
Vary: '*'
}
}
}
}