DEV Community

Discussion on: Use Vue to create a SPA without any Node modules

Collapse
 
arswaw profile image
Arswaw

I have faced this issue before. It comes down to a bug with ES6 Modules in older versions of Edge. If you can, update to the latest version. It uses the same engine as Google Chrome.

If you can't update, I have used RollupJS to bypass this issue. It will grab all the ES6 Modules and put them in one file. You can use it from the command line.

Does this help.