LegacyImporterResult
Legacy Importer Result: {
file: string;
} | {
contents: string;
} | Error | null
file: string;
} | {
contents: string;
} | Error | null
Sass stands with the protesters against police violence. We encourage our users to get in the streets and join them if you can.
The result of running a LegacyImporter. It must be one of the following types:
An object with the key
contents
whose value is the contents of a stylesheet (in SCSS syntax). This causes Sass to load that stylesheet’s contents.An object with the key
file
whose value is a path on disk. This causes Sass to load that file as though it had been imported directly.null
, which indicates that it doesn’t recognize the URL and another importer should be tried instead.An Error object, indicating that importing failed.
Deprecated
This only works with the legacy render and renderSync APIs. Use ImporterResult with compile, compileString, compileAsync, and compileStringAsync instead.