mirror of
https://github.com/LukeHagar/skeleton.git
synced 2025-12-08 04:21:21 +00:00
12 lines
224 B
JavaScript
12 lines
224 B
JavaScript
const tailwindcss = require('tailwindcss');
|
|
|
|
const config = {
|
|
plugins: [
|
|
require('postcss-import'),
|
|
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
|
|
tailwindcss()
|
|
]
|
|
};
|
|
|
|
module.exports = config;
|