mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-13 15:37:03 +00:00
16 lines
373 B
JavaScript
16 lines
373 B
JavaScript
const tailwindcss = require("tailwindcss");
|
|
const autoprefixer = require("autoprefixer");
|
|
const cssnano = require("cssnano");
|
|
|
|
const config = {
|
|
plugins: [
|
|
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
|
|
tailwindcss(),
|
|
//But others, like autoprefixer, need to run after,
|
|
autoprefixer,
|
|
cssnano()
|
|
],
|
|
};
|
|
|
|
module.exports = config;
|