opengoal-launcher/postcss.config.cjs
tripp dee7b66c0a
UI Overhaul (#35)
- [x] Add support for texture packs
- [x] Override default Tauri updater dialog
- [x] Custom top menu bar
- [x] Added support links to github issues (jak-project, launcher) &
discord
- [x] New progress bar / progress stepper
- [x] Highlight active route in sidebar
- [ ] Add an error handling screen
- [x] Connect update notes properly
2022-09-27 20:40:13 -04:00

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;