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

      Random Linux question
      Hangout • linux • • walfin

      1
      0
      Votes
      1
      Posts
      128
      Views

      No one has replied

    • mYnDstrEAm

      How to build a slideshow (QCarousel) with parts of the next and previous image showing?
      Help • carousel linux slideshow spa • • mYnDstrEAm

      2
      1
      Votes
      2
      Posts
      426
      Views

      mYnDstrEAm

      Basically like https://gs-shop.github.io/vue-slick-carousel/#/example/center-mode with "slidesToShow": 1

      Most relevant issue seems to be: https://github.com/quasarframework/quasar/issues/6135

      I have changed it now so that if there’s a large whitespace the previous and next buttons cover the whitespace-area.

    • mYnDstrEAm

      Will the Quasar Framework support the Librem 5 (new GNU/Linux smartphone with PureOS and GNOME or Plasma Mobile)?
      Framework • electron librem5 linux quasar smartphone • • mYnDstrEAm

      4
      0
      Votes
      4
      Posts
      452
      Views

      Hawkeye64

      No idea, but feel free to keep investigating and maybe make some PRs if needed to support what you are doing. That’s the beauty of Open Source Software

    • M

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

      4
      0
      Votes
      4
      Posts
      1725
      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') }