Stuck at 100 percent after running quasar dev
-
Hi i am having a problem here with quasar cli… whenever it reach 100 percent no page has been loaded… please help me how to fix this thank you… i already upgrade my quasar cli to the latest version… thanks
-
It may be a missing enclosing html tag error or things like that in your template.
-
investigate this a couple of times now, with a couple different reasons behind it.
- Missing closing or invalid tag intemplate (as mentioned by liguyu above)
- Multiple root elements in vue template
- Usage of non-es2015 syntax in template, example: <span>{{ myObject?.myVar }}</span> (notice the ?. syntax)
The only way to discover exactly which file is the issue is to run:
$ quasar build --debugThis will give you (a lot of) output and tell you which file, but not exactly what issue, it gets stuck at.
Hope this helps other people!
-
@Pierre It just helped me with the same issue. Thanks!
-
My problem was <span>{{ myObject?.myVar }}</span>, Thanks!!!