Skip to content

Commit d314f19

Browse files
committed
chore: update dependencies to use Tailwind CSS with Vite, remove old Tailwind integration, and bump version to 0.2.7
1 parent ff528b9 commit d314f19

14 files changed

Lines changed: 671 additions & 940 deletions

astro.config.mjs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
// @ts-check
22
import { defineConfig } from 'astro/config';
3-
import tailwind from '@astrojs/tailwind';
3+
import tailwindcss from '@tailwindcss/vite';
44
import sitemap from '@astrojs/sitemap';
55

66
// https://astro.build/config
77
export default defineConfig({
88
site: 'https://libredb.org',
9-
integrations: [tailwind(), sitemap()],
9+
integrations: [sitemap()],
10+
vite: {
11+
plugins: [tailwindcss()],
12+
},
1013
build: {
1114
assets: 'assets'
1215
}

0 commit comments

Comments
 (0)