Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support TailwindCSS 4.0 #452

Draft
wants to merge 13 commits into
base: 2.x
Choose a base branch
from
Prev Previous commit
Next Next commit
Revert "fix: Remove TailwindCSS plugin from Vite configuration"
This reverts commit e75274b.
  • Loading branch information
itxshakil committed Jan 24, 2025
commit 7a61e00fe10baf9f1aabb44f14f7ffefa4050e4b
4 changes: 3 additions & 1 deletion stubs/inertia-vue/vite.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
import vue from '@vitejs/plugin-vue';
import tailwindcss from '@tailwindcss/vite';

export default defineConfig({
plugins: [
Expand All @@ -15,6 +16,7 @@ export default defineConfig({
includeAbsolute: false,
},
},
})
}),
tailwindcss(),
],
});
Loading