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
When I prepend @import "compass"; before the scss files, the Webpack sass-loader complains about:
@import "compass";
modulesModuleBuildError: Module build failed: @import "compass"; ^ File to import not found or unreadable: compass
The text was updated successfully, but these errors were encountered:
Solved! An includePaths should be configured, When works with sass-loader
includePaths
module.exports = { ... module: { loaders: [ { test: /\.scss$/, loaders: ["style", "css", "sass"] } ] }, sassLoader: { includePaths: [path.resolve(__dirname, "./node_modules/compass-mixins/lib")] } };
Sorry, something went wrong.
No branches or pull requests
When I prepend
@import "compass";
before the scss files, the Webpack sass-loader complains about:The text was updated successfully, but these errors were encountered: