#Remix Blog: Shop.app Case Study

1 messages · Page 1 of 1 (latest)

zealous relic
#

https://remix.run/blog/shop-case-study

Feel free to retweet If you'd like to give us some love on twitter

A case study on how Shopify rapidly built a web version of their popular iOS/Android app Shop with Remix

Did you know that https://t.co/RBMSWEMCzu is built with Remix? 😅

@Shopify is building and shipping products to millions of users with Remix. We sat down with the team who built https://t.co/RBMSWEMCzu to discuss the project.

https://t.co/RBMSWEMCzu was one of the first Remix…

woven scaffold
#

Would be very interested in any technical details on "The team was able to reduce HMR times even further by parallelizing the build process for their style system, Tailwind CSS. Once parallelized, HMR times decreased all the way down to 0.1s.".

A lot of Remix users use tailwind so this could help many of us I'd imagine.

zealous relic
woven scaffold
zealous relic
#

I think they're just using something like concurrently and running the tailwind cli in watch mode

npx tailwindcss -i ./src/input.css -o ./src/output.css --watch
#

Ah, found it

"dev": "concurrently \"tsx ./server.ts\" \"tailwindcss --watch -o ./app/assets/css/tailwind.css\"",
woven scaffold
zealous relic
woven scaffold