mirror of
https://github.com/LukeHagar/sveltesociety.dev.git
synced 2025-12-06 04:21:38 +00:00
* feat: Add tailwind for styling * Use ESM for postcss * Remove overlapping classes * More layout fixes * Pin footer to bottom * Replace .old-container * Fix prettier
11 lines
181 B
JavaScript
11 lines
181 B
JavaScript
// @ts-check
|
|
|
|
import tailwindcss from 'tailwindcss';
|
|
import autoprefixer from 'autoprefixer';
|
|
|
|
const config = {
|
|
plugins: [tailwindcss(), autoprefixer()]
|
|
};
|
|
|
|
export default config;
|