If you attempt to import dayjs into a Vue/React app using Vite you will find it fails. Vite only works with ESM modules.
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'