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
In the config object of postcss-import, there's a path option to define where it has to search for a file.
postcss-import
at the moment the only way is to create a resolve function:
const path = require('path'); const atImport = require('postcss-import'); const postcssNormalize = require('postcss-normalize'); module.exports = { // [...] plugins: [ atImport(postcssNormalize(/* opts */).postcssImport({ resolve: (id) => path.resolve(__dirname, 'path/to/css', `${id}.css`), })), ], };
but we could be allowed to use options.path
const atImport = require('postcss-import'); const postcssNormalize = require('postcss-normalize'); module.exports = { // [...] plugins: [ atImport(postcssNormalize(/* opts */).postcssImport({ path: 'path/to/css', })), ], };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the config object of
postcss-import
, there's a path option to define where it has to search for a file.at the moment the only way is to create a resolve function:
but we could be allowed to use options.path
The text was updated successfully, but these errors were encountered: