How do I use dayjs in Vite for Vue or React?

Viewed 710

If you attempt to import dayjs into a Vue/React app using Vite you will find it fails. Vite only works with ESM modules.

1 Answers

I found you need to import the esm module directly and then it will work correctly with Vite run/build.

import dayjs from 'dayjs/esm/index.js'
Related