I have a very simple app with some html, css, and ts files. I use swc to compile the typescript and copy over the html/css/assets. Now, I'm looking to add tailwind to my project, but I'm not sure how it will fit in to the build process.
Currently, my build is very simple, I just run swc src -Dw --out-dir=built
. However, I'm not sure of the interplay between swc and tailwind. Should I run tailwind first on my src directory, build into some intermediary directory, and then run swc in that directory? Can tailwind even process ts files?
All resources online seem to be tailored for people using react/nextjs with a complicated build system I don't understand.