27 lines
700 B
JavaScript
27 lines
700 B
JavaScript
module.exports = {
|
|
"plugins": [
|
|
[
|
|
'@csstools/postcss-global-data',
|
|
{
|
|
files: ['src/once-ui/styles/breakpoints.scss'],
|
|
},
|
|
],
|
|
"postcss-custom-media",
|
|
"postcss-flexbugs-fixes",
|
|
[
|
|
"postcss-preset-env",
|
|
{
|
|
"autoprefixer": {
|
|
"flexbox": "no-2009"
|
|
},
|
|
"stage": 3,
|
|
"features": {
|
|
"custom-properties": false
|
|
}
|
|
}
|
|
],
|
|
"tailwindcss", // Toevoegen van Tailwind CSS
|
|
"autoprefixer", // Autoprefixer om CSS-compatibiliteit te verbeteren
|
|
]
|
|
};
|