Remove Tailwind vite plugin - use Tailwind CSS standalone
Some checks failed
Deploy to Easypanel / deploy (push) Has been cancelled

This commit is contained in:
Kunthawat Greethong
2026-04-27 20:56:38 +07:00
parent fd676e81bf
commit 0717cea5c7
4 changed files with 7 additions and 7 deletions

View File

@@ -1,5 +1,4 @@
import { defineConfig } from 'astro/config'
import tailwindcss from '@tailwindcss/vite'
import { fileURLToPath } from 'url'
import path from 'path'
@@ -9,7 +8,6 @@ export default defineConfig({
site: 'https://example.com',
integrations: [],
vite: {
plugins: [tailwindcss()],
define: {
'import.meta.env.TINA_TOKEN': JSON.stringify(process.env.TINA_TOKEN || ''),
},