compileAsync
- compile
Async(path: string, options?: Options<"async">): Promise<CompileResult> -
Parameters
-
path: string
-
Optional
options: Options<"async">
Returns Promise<CompileResult>
-
Sass stands with the protesters against police violence. We encourage our users to get in the streets and join them if you can.
Optional
options: Options<"async">
Asynchronously compiles the Sass file at
path
to CSS. Returns a promise that resolves with a CompileResult if it succeeds and rejects with an Exception if it fails.This only allows synchronous or asynchronous Importers and CustomFunctions.
⚠️ Heads up!
When using Dart Sass, compile is almost twice as fast as compileAsync, due to the overhead of making the entire evaluation process asynchronous.
Example