2

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

mbokil
  • 3,202
  • 30
  • 22

1 Answers1

4

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'
mbokil
  • 3,202
  • 30
  • 22