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. build
    Log in to post
    • forevereffort

      How to fix the tslint of electron-main.dev.js and electron-main.js
      Framework • build electron lint • • forevereffort

      2
      0
      Votes
      2
      Posts
      153
      Views

      forevereffort

      I found this solution : https://github.com/quasarframework/quasar/issues/8422

    • A

      quasar configured for scss, error on build
      Useful Tips (NEW) • build • • asonis

      1
      0
      Votes
      1
      Posts
      154
      Views

      No one has replied

    • M

      PWA + Typescript
      Help • build pwa typescript • • MartinB

      5
      0
      Votes
      5
      Posts
      756
      Views

      S

      Created this issue: https://github.com/quasarframework/quasar/issues/8340
      this github repo to reproduce: https://github.com/sluedecke/quasar-pwa-test

    • tmladek

      How to use "Speed Measure Plugin" - or other build profiling?
      Help • build webpack • • tmladek

      1
      0
      Votes
      1
      Posts
      298
      Views

      No one has replied

    • C

      Electron build
      Help • build electron • • cem386

      1
      0
      Votes
      1
      Posts
      119
      Views

      No one has replied

    • R

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

      2
      0
      Votes
      2
      Posts
      1140
      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: "/", }; } }
    • G

      [Solved] postcss-svgo: TypeError when building for release
      Help • build error postcss svgo • • Gabee01

      2
      0
      Votes
      2
      Posts
      1742
      Views

      G

      Hey, just figured it out…
      So it happens that when I upgraded my packages, the type of path used on quasar wasn’t compatible with the latest version of postcss-svgo:
      See https://github.com/svg/svgo/issues/1030
      There you will find out that this was solved on the v1.1.1 released today, so upgrading using

      npm install --save-dev quasar-cli@latest

      again fixed it

    • M

      How to add path alias?
      CLI • bitbucket build linux pipelines qusar-cli • • morlz

      4
      0
      Votes
      4
      Posts
      1681
      Views

      G

      Maybe try resolve or path.resolve?

      extendWebpack (cfg) { cfg.resolve.alias = { ...cfg.resolve.alias, // Add your own alias like this 'vue$': 'vue/dist/vue.esm.js', '@': resolve('src') }

      or…

      extendWebpack (cfg) { cfg.resolve.alias = { ...cfg.resolve.alias, // Add your own alias like this 'vue$': 'vue/dist/vue.esm.js', '@': path.resolve('src') }
    • J

      Difference in js file output in Cordova build
      CLI • build cordova webpack • • jasonl

      4
      0
      Votes
      4
      Posts
      1002
      Views

      J

      Updating Quasar to 0.17.6 solved the issue.

    • G

      Build for environments other than 'development" and 'production'
      Framework • build development environment production test • • gtissington

      9
      0
      Votes
      9
      Posts
      5666
      Views

      A

      Hi sorry, I’m not sure whether this has been marked as resolved or not.

      Seems like I have same concern:
      So there will be 3 different environments (e.g: dev, staging, production).
      It will also have 3 different API url. (how to set these three up without using dot-env ext which failed in Amplify readability)
      It will have 3 different build commands.

      which one should I do first and how?

    • D

      Deploy and upgrade quasar app
      Help • build deployment release • • damosse31

      10
      0
      Votes
      10
      Posts
      6037
      Views

      D

      @mzamateo said in Deploy and upgrade quasar app:
      you can ask kindly to finish current work and then reload, with a popup or so…

      Exactly !

      On my side, I put app version in localstorage (or cookie) and I check if the current version is different (ex: 9.0.10 -> 9.0.11) then I open dialog to inform the user that a new version is available since his last visit and if he want to see the changelog or not.

      0_1503701319910_Screenshot_1.png

    • K

      Cordova generated app missing Modules variables
      Help • android build cordova • • kosciak

      6
      0
      Votes
      6
      Posts
      2300
      Views

      rstoenescu

      I’m glad you figured things out. Was about to contact you so I can take a look now, but you were faster 🙂