open-code-review/pages/postcss.config.cjs
kite 8022d4a5a3
ci(pages): add ESLint and bundle size check to CI pipeline (#558)
- Add ESLint with typescript-eslint and react-hooks plugin
- Add size-limit to monitor initial bundle size (150 kB threshold)
- Rename .js configs to .cjs for ESM compatibility ("type": "module")
- Fix no-useless-escape and no-useless-assignment lint errors
- Update pages-ci.yml with lint and size check steps
2026-07-28 20:19:37 +08:00

6 lines
114 B
JavaScript

module.exports = {
plugins: {
tailwindcss: { config: './tailwind.config.cjs' },
autoprefixer: {}
}
};