migrate to nextjs

This commit is contained in:
2026-01-29 18:50:43 +01:00
parent 019b59602f
commit 4906fc0b7b
43 changed files with 2795 additions and 3515 deletions

View File

@@ -1,7 +1,10 @@
import typography from '@tailwindcss/typography';
/** @type {import('tailwindcss').Config} */
module.exports = {
export default {
content: [
'./src/**/*.{astro,html,js,jsx,md,mdx,ts,tsx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
@@ -63,6 +66,6 @@ module.exports = {
},
},
plugins: [
require('@tailwindcss/typography'),
typography,
],
}
}