We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ea85f0 commit 9806533Copy full SHA for 9806533
src/index.ts
@@ -32,7 +32,7 @@ const OPTIONS_SCHEMA: JSONSchema7 = {
32
interface Options {
33
layers: Layer[];
34
nonce?: string;
35
- injectOrderAs?: "link" | "style";
+ injectOrderAs?: "link" | "style" | "none";
36
publicPath?: string;
37
}
38
src/loader.ts
@@ -35,7 +35,7 @@ export const OPTIONS_SCHEMA: JSONSchema7 = {
export type Layer = {
path: string;
- exclude: string;
+ exclude?: string;
39
name: string;
40
};
41
0 commit comments