I am building an SPA with webpack and vue.js. Webpack is based on es6 and vue.js is heavily dependent on importing and exporting modules. I would like to make the static html views in pinegrow because it is very fast than typing html in webpack. Also it is easier to drag and drop and mix things up to get the right appearance.
I notice the webkit browser that is built into pinegrow does not support import and export of es6 modules. For example, one could type “Import moduleX” in the pinegrow browser console and get a
“Uncaught SyntaxError: Unexpected token import”
The issue is, if I opened my webpack application in pinegrow, I see the above errors because pinegrow does not support es6 importing and exporting of modules.
Is there any way to upgrade webkit browser built into pinegrow to support es6 module.
Thanks