Is there a way to integrate tailwind css into bundle js effectively?
Take a look at this example involving vue 3 and tailwind 3 https://github.com/musashiM82/vue-webpack.
Upon executing npm run build
, it generates 3 files:
- app.js
- ABOUTPAGE.js
- app.6cba1802.css
I am looking to merge app.6cba1802.css into app.js, so the outcome will be:
- app.js
- ABOUTPAGE.js
Appreciate any suggestions or guidance. Thank you.