2024-09-26 09:38:02 +08:00
|
|
|
// @ts-check
|
|
|
|
|
2025-04-01 11:14:15 +08:00
|
|
|
/** @type {import("postcss-load-config").Config} */
|
2024-09-26 09:38:02 +08:00
|
|
|
export default {
|
2025-04-01 11:14:15 +08:00
|
|
|
plugins: {
|
|
|
|
'postcss-import': {},
|
|
|
|
'tailwindcss/nesting': {},
|
|
|
|
tailwindcss: {},
|
|
|
|
autoprefixer: {},
|
|
|
|
...(process.env.NODE_ENV === 'production' ? { cssnano: {} } : {}),
|
|
|
|
},
|
2024-09-26 09:38:02 +08:00
|
|
|
};
|