-
Hey @akclace Not sure if you want the user to need the npx binary installed ? I don't have it locally and when I run cowbell the web browser GUI returns:
|
Beta Was this translation helpful? Give feedback.
Answered by
akclace
Oct 26, 2023
Replies: 1 comment 2 replies
-
there is a standalone tailwinds binary btw: https://tailwindcss.com/blog/standalone-cli |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If the app is created with the --is_dev option, that means development mode and the Clace server tries to setup the dev environment. The cowbull app uses DaisyUI, so it uses
npx tailwindcss
as the watcher process, which needs npm and DaisyUI.If the app is using tailwind, without DaisyUI, then the standalone CLI can be used. Set
in clace.toml config, see https://clace.io/docs/app/styling/#tailwindcss. Unfortunately, DaisyUI cannot work with the standalone tailwind CLI, see saadeghi/daisyui#770.
If you do not set --is_dev, then the watcher is not started, it should work fine. I will fix the dev mode startup such that if the watcher fail…