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. spa
    Log in to post
    • Y

      Example of combining Laravel 8 and Quasar superpowers in separate repos
      Useful Tips (NEW) • example laravel7 quasar sanctum spa • • yolosan

      7
      1
      Votes
      7
      Posts
      3146
      Views

      A

      for me as well, 419 caused by a CSRF mismatch

    • 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.

    • I

      SPA-SSR Deployment with Apache
      Help • apache express spa ssr • • Ivo

      4
      0
      Votes
      4
      Posts
      1439
      Views

      I

      An update:
      I noticed that the statics GET ignores the publicPath set on quasar.conf.js, so I tried:

      include in quasar.conf.js assetPublicPath: '/node/' -> nothing on src-ssr/index.js:
      2.1.app.use('js', express.static(path.join(__dirname, 'www/js'))) -> nothing
      2.2.app.use('*/js', express.static(path.join(__dirname, 'www/js'))) -> nothing template.html: if I include <base href="/node/"/> on the header (based on this stackoverflow answer), the images are loaded but not js, css…

      Probably this is simple and a newbie mistake, but thank you all for all the help you can give.