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. cli
    Log in to post
    • W

      Any script to auto-upgrade to @quasar/app V2?
      CLI • cli upgrade • • walfin

      1
      -1
      Votes
      1
      Posts
      111
      Views

      No one has replied

    • marek.kaczkowski

      `Quasar App Extension "serve" is missing` error
      CLI • cli npm quasar serve yarn • • marek.kaczkowski

      1
      1
      Votes
      1
      Posts
      1347
      Views

      No one has replied

    • C

      [v1] What is the difference between using cli "quasar b" and "quasar d"
      CLI • cli v1.0 • • chankl78

      9
      0
      Votes
      9
      Posts
      537
      Views

      C

      It is not working for me. …

    • M

      [V1] A guide for @quasar/dotenv
      Useful Tips (NEW) • cli dotenv extension v1.0 • • mKomo

      14
      5
      Votes
      14
      Posts
      3613
      Views

      B

      @ArkIv That’s good.

      dotenv not working my quasar. so I mixed your method + qenv.

      .quasar.env.json

      { "development": { "ENV_TYPE": "Running Development", "ENV_DEV": "Development", "API_URL": "https://dev.some.com" }, "production": { "ENV_TYPE": "Running Production", "ENV_PROD": "Production", "API_URL": "https://some.com" }, "test": { "ENV_TYPE": "Running Test", "ENV_Test": "Test" }, "stage": { "ENV_TYPE": "Running Stage", "ENV_STAGE": "Stage", "API_URL": "https://stg.some.com" } }

      quasar.conf.json

      const configEnv = require('./.quasar.env.json') module.exports = configure(function (ctx) { return { ...... env: { // for settting proxy address with ctx.dev, ctx.prod IS_STAGE: false, }, }, devServer: { proxy: { // proxy all requests starting with /api to specific url '/api': { target: ctx.prod ? configEnv["production"].API_URL : process.env.IS_STAGE ? configEnv["stage"].API_URL : configEnv["development"].API_URL, changeOrigin: true, pathRewrite: { '^/api': '' } },
    • 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
      283
      Views

      No one has replied

    • Jezzta667

      Why is there no webpack alias to src by default?
      Framework • cli test • • Jezzta667

      6
      0
      Votes
      6
      Posts
      1479
      Views

      dmitry.polushkin

      It’s possible to use webpack with IDEA IDE: https://www.jetbrains.com/help/idea/using-webpack.html
      Just set separate webpack.js file and include it into the quasar.conf.js

    • A

      Vue CLI 3 plugin downsides?
      Framework • cli • • affan.shahid

      2
      0
      Votes
      2
      Posts
      543
      Views

      L

      Good point!

      I’m going to the same path.

    • J

      init quasar with specific version
      CLI • cli setup version • • janviehweger

      1
      0
      Votes
      1
      Posts
      1059
      Views

      No one has replied

    • M

      Crashed components when moved to beta version
      Help • beta cli • • mfcarneiro

      8
      0
      Votes
      8
      Posts
      2257
      Views

      LaurentPayot

      @a47ae nice trick indeed! Bookmarked.