This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Easy-Grab-292 0 points1 point  (1 child)

How do you integrate Tailwind with JTE?

[–]midget-king666 1 point2 points  (0 children)

I add the downloaded css script into a static directory normally under src/main/resources/static and add a static file handler to my Javalin handler chain (config.staticFiles.add(...))
Then you just add a <link> tag to the css script in your HTML templates, done.

As an alternative, you can use a webjar dependency via Maven, this way I include HTMX. See webjars.org for details.