Actually, setting from option did break @import rules in my project. I was able to sort it out by omitting it and also disabling the source map generation. Although, this might be a very project-specific issue.
if (item.options) {
item.options.sourceMap = false
delete item.options.config
}
Glad you're able to resolve the issue. from option is needed for source map generation and in a rails project defaults to the project root. However more info will be needed to debug the issue if you do need to enable source maps
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Actually, setting
fromoption did break@importrules in my project. I was able to sort it out by omitting it and also disabling the source map generation. Although, this might be a very project-specific issue.Glad you're able to resolve the issue.
fromoption is needed for source map generation and in a rails project defaults to the project root. However more info will be needed to debug the issue if you do need to enable source maps