Closed aralroca closed 5 days ago
``` bun add https://pkg.pr.new/brisa-build/brisa/brisa-adapter-vercel@638 ```
``` bun add https://pkg.pr.new/brisa-build/brisa/brisa-tailwindcss@638 ```
``` bun add https://pkg.pr.new/brisa-build/brisa/brisa-pandacss@638 ```
``` bun add https://pkg.pr.new/brisa-build/brisa/create-brisa@638 ```
``` bun add https://pkg.pr.new/brisa-build/brisa/www@638 ```
``` bun add https://pkg.pr.new/brisa-build/brisa@638 ```
commit: 79cdd0f
Fixes https://github.com/brisa-build/brisa/issues/637
Fixes integration with tailwind and standalone build. The problem with tailwind is that it uses a subdependency called lightningcss which cannot be compiled, so it is marked as external. By marking it as external, if the standalone build is moved into another environment like
.vercel
, it stopped working. Now even if it is external, the Tailwind dependencies are added in an embedded way during the build (the responsible is the adapter). In this way the bug is solved, although on the other hand it increases the build time a little in the case of using Tailwind.