2024-10-16 16:58:05 -04:00
|
|
|
/** @type {import('postcss-load-config').Config} */
|
|
|
|
const config = {
|
|
|
|
plugins: {
|
|
|
|
tailwindcss: {},
|
2024-11-23 01:06:37 -05:00
|
|
|
'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',
|
|
|
|
},
|
|
|
|
},
|
2024-10-16 16:58:05 -04:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|