Files
sveltesociety.dev/postcss.config.js
Lachlan Collins 4ffc0b7f92 feat: Add tailwind for utility classes (#562)
* feat: Add tailwind for styling

* Use ESM for postcss

* Remove overlapping classes

* More layout fixes

* Pin footer to bottom

* Replace .old-container

* Fix prettier
2023-12-31 00:09:01 +11:00

11 lines
181 B
JavaScript

// @ts-check
import tailwindcss from 'tailwindcss';
import autoprefixer from 'autoprefixer';
const config = {
plugins: [tailwindcss(), autoprefixer()]
};
export default config;