Skip to content

Commit

Permalink
docs(config): update autoprefixCss default
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley committed Nov 12, 2020
1 parent 4fc3dc0 commit 24db71b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/declarations/stencil-public-compiler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ export interface StencilConfig {
*/
allowInlineScripts?: boolean;
/**
* By default, Stencil will use the appropriate config to automatically prefix css. For example,
* developers can write modern and standard css properties, such as "transform", and Stencil
* will automatically add in the prefixed version, such as "-webkit-transform". To disable
* autoprefixing css, set this value to `false`.
* By setting `autoprefixCss` to `true`, Stencil will use the appropriate config to automatically
* prefix css. For example, developers can write modern and standard css properties, such as
* "transform", and Stencil will automatically add in the prefixed version, such as "-webkit-transform".
* As of Stencil v2, autoprefixing CSS is no longer the default.
* Defaults to `false`
*/
autoprefixCss?: boolean | any;

Expand Down Expand Up @@ -199,7 +200,7 @@ export interface StencilConfig {
/**
* Provide a object of key/values accessible within the app, using the `Env` object.
*/
env?: {[prop: string]: string | undefined};
env?: { [prop: string]: string | undefined };

globalScript?: string;
srcIndexHtml?: string;
Expand Down

0 comments on commit 24db71b

Please sign in to comment.