[Vuejs]-Mkv video doesn't play in my nuxt project (webpage)

0👍

I’m facing the same problem.
And I found the following things.
npm run dev : autoplay works.
npm run build && npm run start : autoplay doesn’t work.

my package.json :

"scripts": {
  "dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
  "build": "nuxt build",
  "start": "cross-env NODE_ENV=production nodemon server/index.js --watch server"
}

So I guess the problem cause some process with NODE_ENV=production .

Leave a comment