This repository was archived by the owner on Sep 29, 2024. It is now read-only.

Description
Hi, thanks for this plugin [collection]. I am trying to set the importFrom option for the preset-env plugin. Are those options set at the root, or is there a prefix that we need to know about?
My postcss.config.js looks like this:
import precss from 'precss';
const options = {
importFrom: './variables.css',
}
module.exports = () => ({
plugins: [precss(options)]
})
However, the css I'm compiling appears not to find the variables declared in variables.css.