Spaces:
Build error
Build error
| import typography from '@tailwindcss/typography'; | |
| import containerQueries from '@tailwindcss/container-queries'; | |
| /** @type {import('tailwindcss').Config} */ | |
| export default { | |
| darkMode: 'class', | |
| content: ['./src/**/*.{html,js,svelte,ts}'], | |
| theme: { | |
| extend: { | |
| typography: { | |
| DEFAULT: { | |
| css: { | |
| pre: false, | |
| code: false, | |
| 'pre code': false, | |
| 'code::before': false, | |
| 'code::after': false | |
| } | |
| } | |
| }, | |
| padding: { | |
| 'safe-bottom': 'env(safe-area-inset-bottom)' | |
| }, | |
| transitionProperty: { | |
| width: 'width' | |
| } | |
| } | |
| }, | |
| plugins: [typography, containerQueries] | |
| }; | |