2024-03-09 16:27:52 +08:00
|
|
|
// @ts-check
|
|
|
|
|
|
|
|
/** @type {import('postcss-load-config').Config} */
|
|
|
|
export default {
|
2022-09-07 16:04:26 +08:00
|
|
|
plugins: {
|
|
|
|
"postcss-import": {},
|
2023-05-12 13:27:40 +08:00
|
|
|
"tailwindcss/nesting": {},
|
2022-09-07 16:04:26 +08:00
|
|
|
tailwindcss: {},
|
2022-09-08 17:15:22 +08:00
|
|
|
autoprefixer: {},
|
|
|
|
...(process.env.NODE_ENV === "production" ? { cssnano: {} } : {})
|
2022-09-07 16:04:26 +08:00
|
|
|
}
|
2021-10-16 16:16:58 +08:00
|
|
|
};
|