/** @type {import('tailwindcss').Config} */ export default { content: ['./src/**/*.{html,js,svelte,ts}'], theme: { extend: { fontFamily: { sans: ['Lineyka', 'sans-serif'], disket: ['Disket Mono', 'monospace'], }, typography: { DEFAULT: { css: { maxWidth: '100%' } } } } }, plugins: [ require('@tailwindcss/typography') ] };