| 123456789101112 | // @ts-check/** @type {import('postcss-load-config').Config} */export default {  plugins: {    "postcss-import": {},    "tailwindcss/nesting": {},    tailwindcss: {},    autoprefixer: {},    ...(process.env.NODE_ENV === "production" ? { cssnano: {} } : {})  }};
 |