mirror of
https://github.com/andrei0x309/yup-live-chrome-extension.git
synced 2024-10-26 16:00:56 +00:00
14 lines
323 B
JavaScript
14 lines
323 B
JavaScript
|
const tailwindcss = require("tailwindcss");
|
||
|
const autoprefixer = require("autoprefixer");
|
||
|
|
||
|
const config = {
|
||
|
plugins: [
|
||
|
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
|
||
|
tailwindcss(),
|
||
|
//But others, like autoprefixer, need to run after,
|
||
|
autoprefixer,
|
||
|
],
|
||
|
};
|
||
|
|
||
|
module.exports = config;
|