Skip to content

Commit

Permalink
fix(docs): Minify CSS and JS config swapped
Browse files Browse the repository at this point in the history
  • Loading branch information
mexx authored and arjunyel committed Sep 23, 2019
1 parent 513012e commit 1953c12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/declarations/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,13 +146,13 @@ export interface StencilConfig {
* Sets if the JS browser files are minified or not. Stencil uses `terser` under the hood.
* Defaults to `false` in dev mode and `true` in production mode.
*/
minifyCss?: boolean;
minifyJs?: boolean;

/**
* Sets if the CSS is minified or not. Stencil uses `cssnano` under the hood.
* Defaults to `false` in dev mode and `true` in production mode.
*/
minifyJs?: boolean;
minifyCss?: boolean;

/**
* Forces Stencil to run in `dev` mode if the value is `true` and `production` mode
Expand Down

0 comments on commit 1953c12

Please sign in to comment.