We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33d7572 commit 6fef18bCopy full SHA for 6fef18b
README.md
@@ -321,12 +321,12 @@ Type:
321
322
```ts
323
type sassOptions =
324
- | object
+ | import("sass").LegacyOptions<"async">
325
| ((
326
content: string | Buffer,
327
loaderContext: LoaderContext,
328
meta: any
329
- ) => object);
+ ) => import("sass").LegacyOptions<"async">);
330
```
331
332
Default: defaults values for Sass implementation
@@ -352,7 +352,7 @@ Please consult documentation before using them:
352
353
#### `object`
354
355
-Use and object for the Sass implementation setup.
+Use an object for the Sass implementation setup.
356
357
**webpack.config.js**
358
0 commit comments