We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7433dfe commit b5e110cCopy full SHA for b5e110c
1 file changed
apps/website/docs/learn/environment-setup/02-next.md
@@ -66,19 +66,16 @@ const config = {
66
babelConfig: babelLoader,
67
useLayers: true,
68
},
69
- autoprefixer: {},
+ // If your pipeline doesn't already do CSS auto-prefixing, feel free to install as well autoprefixer
70
+ // $ npm install --dev autoprefixer
71
+ // and uncomment the line below
72
+ // autoprefixer: {},
73
74
};
75
76
export default config;
77
```
78
-If necessary, run
-
-```
79
-npm install --dev autoprefixer
80
81
82
## Next.js configuration
83
84
Create or edit the `next.config.js` file as follows. Note that below you will find config for both turbopack or webpack.
0 commit comments