mirror of
https://github.com/LukeHagar/sveltesociety.dev.git
synced 2025-12-06 12:47:44 +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
13 lines
190 B
JavaScript
13 lines
190 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
const config = {
|
|
content: ['./src/**/*.{html,js,ts,svelte}'],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: []
|
|
};
|
|
|
|
module.exports = config;
|