mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-05 05:07:14 +02:00
feat(v2): postcss should only use stage 3 features instead of stage 2 (#1872)
This commit is contained in:
parent
91703eb728
commit
22fb8698c5
2 changed files with 2 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
- Add sticky footer.
|
- Add sticky footer.
|
||||||
- Remove empty doc sidebar container
|
- Remove empty doc sidebar container
|
||||||
|
- PostCSS preset env now only polyfills Stage 3 features (previously it was stage 2) like Create React App. Stage 2 CSS is considered relatively unstable and subject to change while Stage 3 features will likely become a standard.
|
||||||
|
|
||||||
## 2.0.0-alpha.30
|
## 2.0.0-alpha.30
|
||||||
|
|
||||||
|
|
|
@ -54,6 +54,7 @@ export function getStyleLoaders(
|
||||||
autoprefixer: {
|
autoprefixer: {
|
||||||
flexbox: 'no-2009',
|
flexbox: 'no-2009',
|
||||||
},
|
},
|
||||||
|
stage: 3,
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue