mirror of
https://github.com/LukeHagar/skeleton.git
synced 2025-12-06 12:47:44 +00:00
* transpiling all.css works * added stylesheet back * deleted grid to fix menu popping open because ??? * removed all.css * added transpile to build script * removed unneeded stuff * doesn't bundle in production * undo a bunch of stuff * not needed * forgot to remove this * more fitting name for the plugin * cleaned up * Context comment added * Append build script to dev command temporarily * Added TW build step to dev script temporarily * removed generated * removed Co-authored-by: endigo9740 <gundamx9740@gmail.com>
15 lines
340 B
JavaScript
15 lines
340 B
JavaScript
const tailwindcss = require('tailwindcss');
|
|
const autoprefixer = require('autoprefixer');
|
|
|
|
const config = {
|
|
plugins: [
|
|
require('postcss-import'),
|
|
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
|
|
tailwindcss(),
|
|
//But others, like autoprefixer, need to run after,
|
|
autoprefixer
|
|
]
|
|
};
|
|
|
|
module.exports = config;
|