mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-04-25 16:07:19 +08:00
9 lines
173 B
JavaScript
9 lines
173 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import('postcss-load-config').Config} */
|
|
export default {
|
|
plugins: {
|
|
...(process.env.NODE_ENV === "production" ? { cssnano: {} } : {})
|
|
}
|
|
};
|