Initail_Commit

This commit is contained in:
2024-10-20 21:56:52 +02:00
commit ec47039eae
191 changed files with 21402 additions and 0 deletions

26
postcss.config.js Normal file
View File

@@ -0,0 +1,26 @@
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
]
};