mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
19 lines
479 B
JavaScript
19 lines
479 B
JavaScript
export default {
|
|
plugins: {
|
|
"postcss-import": {},
|
|
"tailwindcss/nesting": {},
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
"postcss-preset-mantine": {},
|
|
"postcss-simple-vars": {
|
|
variables: {
|
|
"mantine-breakpoint-xs": "36em",
|
|
"mantine-breakpoint-sm": "48em",
|
|
"mantine-breakpoint-md": "62em",
|
|
"mantine-breakpoint-lg": "75em",
|
|
"mantine-breakpoint-xl": "88em"
|
|
}
|
|
}
|
|
}
|
|
};
|