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