No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Tags
    3. quasar-cli
    Log in to post
    • K

      Cordova Google Maps Plugin
      Help • cordova cordova-plugin google api google maps quasar-cli • • kw_7

      1
      0
      Votes
      1
      Posts
      406
      Views

      No one has replied

    • D0KT0P

      Error with router path (sourceFiles) in quasar.conf.js
      CLI • cli quasar-cli quasar.conf.js router sourcefiles • • D0KT0P

      1
      0
      Votes
      1
      Posts
      284
      Views

      No one has replied

    • L

      AWS Amplify integration
      Framework • amplify aws aws-amplify quasar-cli • • luisliev

      4
      0
      Votes
      4
      Posts
      783
      Views

      codeguru.io

      it should be done using boot files

    • S

      Is "quasar new plugin" deprecated in 1.0 beta?
      CLI • beta plugin quasar-cli • • Svoboda

      4
      0
      Votes
      4
      Posts
      1118
      Views

      S

      @rstoenescu Thank you. I was unable to find that myself.

    • R

      Missing files in src-cordova/www
      CLI • build cordova ios quasar-cli • • rtengent

      2
      0
      Votes
      2
      Posts
      1169
      Views

      R

      I solved this problem!

      I was specifying this in quasar.conf.js to fix some routing issues that I was seeing when running “quasar dev” :

      extendWebpack(cfg) { cfg.output = { publicPath: "/", }; }

      cfg.output was not set when running “quasar dev” but it is set when running “quasar build -m cordova -T ios” and so I was inadvertently overwriting it.

      Changing it to this let me get further:

      extendWebpack(cfg) { if (!cfg.output) { cfg.output = { publicPath: "/", }; } }
    • M

      Problem with quasar init command
      Help • init quasar-cli • • mattiabilla

      3
      0
      Votes
      3
      Posts
      1752
      Views

      Akaryatrh

      Thx @somascope! BTW, some related issues exist: https://github.com/quasarframework/quasar/issues/2091

      EDIT: finally the documentation asks to install @vue/cli and @vue/cli-init when using init command: https://quasar-framework.org/guide/quasar-cli.html#init-Create-Project-Folder