We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
module.less
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
Steps to reproduce:
[ 'file-loader', { name: '[hash].[ext]', extensions: ['module.less'], publicPath: '../public', outputPath: '/dist/public', context: '', limit: 0, }, ],
Note that .module.less files are not processed. Adjusting config to:
.module.less
[ 'file-loader', { name: '[hash].[ext]', extensions: ['less'], publicPath: '../public', outputPath: '/dist/public', context: '', limit: 0, }, ],
does work, however, our project has both less and module.less files in them, and it would be fantastic to preserve the extension.
less
i.e., I would love to have var styles = "../public/ad601f0b2f6a9b05a5f9bbf74cce6bec.module.less" as an output
var styles = "../public/ad601f0b2f6a9b05a5f9bbf74cce6bec.module.less"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to reproduce:
Note that
.module.less
files are not processed. Adjusting config to:does work, however, our project has both
less
andmodule.less
files in them, and it would be fantastic to preserve the extension.i.e., I would love to have
var styles = "../public/ad601f0b2f6a9b05a5f9bbf74cce6bec.module.less"
as an outputThe text was updated successfully, but these errors were encountered: