mirror of
https://github.com/LukeHagar/sveltesociety.dev.git
synced 2025-12-06 04:21:38 +00:00
* More tailwind classes * Add prettier-plugin-tailwindcss * More class replacement * Update Card.svelte * Remove tags from card * Update header link * Run format
15 lines
212 B
JavaScript
15 lines
212 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
const config = {
|
|
content: ['./src/**/*.{html,js,ts,svelte}'],
|
|
theme: {
|
|
container: {
|
|
center: true
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|
|
|
|
module.exports = config;
|