mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
14 lines
309 B
JavaScript
14 lines
309 B
JavaScript
// module.exports = {
|
|
// plugins: {
|
|
// tailwindcss: {},
|
|
// autoprefixer: {},
|
|
// ...(process.env.NODE_ENV === 'production' ? { cssnano: {} } : {}),
|
|
// },
|
|
// };
|
|
|
|
/** @type {import('postcss-load-config').Config} */
|
|
const config = {
|
|
plugins: ['@tailwindcss/postcss'],
|
|
};
|
|
|
|
export default config;
|