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