mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 00:42:59 +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] : []),
|
||
|
};
|