Max Milton
Max Milton
Best to keep support questions on the Vue forums: https://forum.vuejs.org Github is intended for bugs related to the project itself.
It's a bit hard to understand what you mean exactly. Could you take a video/gif to show it?
Does this happen in production builds? Pretty sure this is somehow related to `webpack-dev-server`'s hot reload client script and so not something that should be of any concern.
Glad to hear you found the culprit. It was a bit strange since I've not experienced it in any production builds before and I've worked on a lot of projects...
For a pure SPA it totally makes sense to use the runtime only build. This is great when I have full control over a sites design. However, in the corporate...
I typically add something like this to my package.json `scripts`: ```json "profile": "NODE_ENV=production webpack --verbose true --progress --profile --json --config build/webpack.prod.conf.js > compilation-stats.json", ``` it may help.
Rather than enforcing a particular coding standard at the library level it may be a better idea to create a `eslint-marko` plugin. This way you can set sexy defaults but...
I was rather surprised marko didn't have anything out of the box for client-side routing. I've been using Vue for a little over a year and love that it has...
@LanFeusT23 did you come up with a solution for this?
This would be amazing. I could finally get rid of all the `/* eslint-disable jsdoc/valid-types */` comments in files which contain TS types (which is a lot scattered throughout many...