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. waelio
    3. Posts
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 6
    • Best 0
    • Groups 0

    Posts made by waelio

    • RE: Using firebase as plugin in Quasar 0.15

      Hi @CristalT,
      The way I have managed to successfully add my “plugins” is using the boot files, quasar’s boot files.
      in quasar.conf.js my boot is loaded in such:

          boot: [
            { path: "axios" },
            { path: "i18n", server: false },
            { path: "bootstrap" , server: false},
            { path: "api", server: false },
            { path: "hello" , server: false},
            { path: "init-waelio" , server: false},
          ],
      

      for example my bootstrap.js file looks as such:

      
      import { Config, Storage, Note } from "src/plugins";
      
      export default async ({ app, store, Vue }) => {
      
        Vue.prototype.$storage = Storage;
        app.storage = Storage;
        store.$storage = Storage;
      
        Vue.prototype.$config = Config;
        store.$config = Config;
        app.config = Config;
      
        Vue.prototype.$note = Note;
        app.note = Note;
        store.$note = Note;
      
        return;
      };
      
      export { Storage, Config, Note };
      

      Maybe its more than what you need, but it is a working example 🙂
      Good luck

      posted in Help
      waelio
      waelio
    • RE: Page reload messes up JWT in authorization header

      So that means that storing values using $q.localStorage with winder them inaccessible for others using window.localstorage.getItem ?

      posted in Help
      waelio
      waelio
    • RE: router.push in vuex actions

      @stukki Amazing!! I was stuck and now I am not. Thank you for sharing. This ought to be the number 1 question 🙂

      posted in Framework
      waelio
      waelio
    • RE: AWS Amplify and quasar SSR-pwa

      I am having same issue.
      The only thing I can suggest to help with the setup is sharing a link from Amplify https://aws.amazon.com/blogs/mobile/ssr-support-for-aws-amplify-javascript-libraries/
      This might not solve the problem but it is a good start.
      Please let me/us know if you can figure it out. I am stuck too 😞

      posted in Help
      waelio
      waelio
    • RE: Dynamic sitemap.xml with Quasar SSR

      Hey! I already created my sitemap and have it copied to my dist folder under pwa, but it is not accessible by routing to https://mydomain/sitemap.xml
      Where do I have to place it to make accessible?

      posted in Help
      waelio
      waelio
    • RE: How do I modify the output key in webpack config

      @smellydogcoding The best way to insure that your boot file gets loaded in the right place such as Client/Server is in the Boot Section in your quasar.conf.js

      boot: [“i18n”, “axios”, { path: “hello”, server: false }]

      Read more … https://quasar.dev/quasar-cli/developing-ssr/configuring-ssr#Boot-Files

      posted in Help
      waelio
      waelio