mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-21 07:22:53 +08:00
9 lines
308 B
JavaScript
9 lines
308 B
JavaScript
const { purge } = require('tailwindcss/stubs/config.full.js');
|
|
|
|
const autoprefixer = require('autoprefixer')();
|
|
const tailwindcss = require('tailwindcss')('./tailwind.config.js');
|
|
|
|
module.exports = {
|
|
plugins: [tailwindcss, autoprefixer],
|
|
...(process.env.NODE_ENV === 'production' ? [purge] : []),
|
|
};
|