Maybe someone can point me in the right direction.
I’m trying to get a canister to serve a VueJs frontend but I’m feeling quite lost.
I’ve setup webpack to build and drop the minified sources in my dist folder and I verified the bundles find their way into the assets folder in it’s canister.
Currently, I have my entrypoint pointing to a javascript file which serves the bundled index.html to the user. However, since I’m not quite able to figure out how to send the bundled index.js as well it doesn’t work.
I’m not sure how Vue does things, but have you checked you’re populating the “app” html tag the same way the tutorial examples do?
There’s a bootstrapped html page served that has an <app id=“app”> tag. This is the parent dom node you want to populate, regardless of the framework used.