-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
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
Does not rewrite url in @import #130
Comments
Can you share your webpack config? |
I also see the same issue, for example run this snippet and see that the process function is never called.
|
I don't have much context but I was also facing similar problem in my Gatsby project. https://github.com/postcss/postcss-import#resolve Something like this - postcss/postcss-import#190 (comment) |
Rewriting const postCssUrl = require("postcss-url")({
// config here
});
module.exports = {
plugins: [
require("postcss-import")({
plugins: [postCssUrl],
}),
postCssUrl,
],
}; |
None of the basic examples in the readme work for
@import url(...)
constructions, they just stay the same.The text was updated successfully, but these errors were encountered: