Files
crawlnicle/frontend/tailwind.config.js
Tyler Hallada 98c06cbe91 WIP frontend isn't completely broken now
Still more work left with integrating apalis and need to fully update
it.

These changes are mostly for fixing the frontend I broke by eagerly
updating everything.
2025-02-10 00:52:51 -05:00

21 lines
377 B
JavaScript

import plugin from 'tailwindcss/plugin';
/** @type {import('tailwindcss').Config} */
export default {
content: ['../src/**/*.rs'],
theme: {
extend: {},
},
plugins: [
plugin(({ addBase }) =>
addBase({
html: {
fontSize: '16px',
},
})
),
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
],
};