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. v1.0
    Log in to post
    • C

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

      9
      0
      Votes
      9
      Posts
      533
      Views

      C

      It is not working for me. …

    • V

      Boot File Order
      Help • boot file quasar.conf.js v1.0 • • vrn.dev

      2
      0
      Votes
      2
      Posts
      601
      Views

      s.molinari

      Why do you ask? I believe they are in sequential order from the listing in quasar.conf.js. However you can also have them instantiate asynchronously too.

      Scott

    • M

      QSelect option-value not setting to specific property, but entire object
      Framework • options q-select v1.0 • • mlarson

      2
      0
      Votes
      2
      Posts
      315
      Views

      M

      Figured out I needed emit-value and map-options

    • M

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

      14
      5
      Votes
      14
      Posts
      3610
      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': '' } },