mirror of
https://github.com/simon-ding/polaris.git
synced 2026-02-25 05:00:49 +08:00
13 lines
273 B
JavaScript
13 lines
273 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import('postcss-load-config').Config} */
|
|
export default {
|
|
plugins: {
|
|
"postcss-import": {},
|
|
"tailwindcss/nesting": {},
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
...(process.env.NODE_ENV === "production" ? { cssnano: {} } : {})
|
|
}
|
|
};
|