in product.js:
After new Date().toISOString() add replace() to change “:” to an accepted character.
Windows OS doesn’t accept files with a “:”
The person on Youtube is using MAC OS
E.g
new Date().toISOString().replace(/:/g, '-')
in product.js:
After new Date().toISOString() add replace() to change “:” to an accepted character.
Windows OS doesn’t accept files with a “:”
The person on Youtube is using MAC OS
E.g
new Date().toISOString().replace(/:/g, '-')