21 lines
472 B
JavaScript
21 lines
472 B
JavaScript
// eslint-disable-next-line no-undef
|
|
export default {
|
|
plugins: {
|
|
"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",
|
|
},
|
|
},
|
|
"postcss-utilities": {},
|
|
lost: {},
|
|
"postcss-preset-env": {
|
|
stage: 2,
|
|
},
|
|
},
|
|
};
|