We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code makes any page using the asset tag hang indefinitely if there is a CSS source map file in the directory.
new rack.DynamicAssets({ type: rack.LessAsset, urlPrefix: '/css', dirname: path.join(__dirname, '/public/css') }),
As soon as I removed the file bootstrap.css.map from my /public/css directory, the problem was resolved and my pages loaded fine.
bootstrap.css.map
I would like to keep my source map files inside the directory. Is there any easy way to do this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following code makes any page using the asset tag hang indefinitely if there is a CSS source map file in the directory.
As soon as I removed the file
bootstrap.css.map
from my /public/css directory, the problem was resolved and my pages loaded fine.I would like to keep my source map files inside the directory. Is there any easy way to do this?
The text was updated successfully, but these errors were encountered: