2024-09-03 13:18:58 +08:00
|
|
|
// @ts-check
|
|
|
|
|
2024-09-04 14:59:06 +08:00
|
|
|
/** @type {import("postcss-load-config").Config} */
|
2024-09-03 13:18:58 +08:00
|
|
|
export default {
|
2024-09-04 14:59:06 +08:00
|
|
|
plugins: {
|
|
|
|
'postcss-import': {},
|
|
|
|
'tailwindcss/nesting': {},
|
|
|
|
tailwindcss: {},
|
|
|
|
autoprefixer: {},
|
|
|
|
...(process.env.NODE_ENV === 'production' ? { cssnano: {} } : {}),
|
|
|
|
},
|
2024-09-03 13:18:58 +08:00
|
|
|
};
|