File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/docs/src/routes/docs/integrations/postcss
starters/features/postcss Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ This will create a new `postcss.config.js` file at the root of the project with
54
54
- [ PostCSS Preset Env] ( https://preset-env.cssdb.org/ )
55
55
56
56
``` ts title="postcss.config.js"
57
- module . exports = {
57
+ export default {
58
58
plugins: {
59
59
autoprefixer: {},
60
60
" postcss-preset-env" : {
@@ -64,7 +64,7 @@ module.exports = {
64
64
},
65
65
},
66
66
},
67
- }
67
+ };
68
68
```
69
69
70
70
If you wish to add a new plugin like [ CssNano] ( https://cssnano.co/ ) run the following command and update the ` postcss.config.js ` .
Original file line number Diff line number Diff line change 1
- module . exports = {
1
+ export default {
2
2
plugins : {
3
3
autoprefixer : { } ,
4
4
"postcss-preset-env" : {
You can’t perform that action at this time.
0 commit comments