vitedayjs

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


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


Solution

  • 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'