mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 16:33:11 +08:00
9 lines
308 B
JavaScript
9 lines
308 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] : []
|
||
|
};
|