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. Inklud
    I
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 1
    • Best 0
    • Groups 0

    Inklud

    @Inklud

    0
    Reputation
    1
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Inklud Follow

    Latest posts made by Inklud

    • RE: SSR Deployment with Now

      This is how to make Zeit Now work with Quasar

      1. Log into Zeit Now https://zeit.co/
      2. Create a project or import project from Github etc.
      3. Go into Build & Development Settings

      If SPA mode
      Add the following build command: quasar build
      Add the following output directory if SPA: /dist/spa

      If PWA mode
      Add build command: quasar build --mode pwa
      Add the following output directory: /dist/pwa

      If SSR mode
      Add build command: quasar build --mode ssr
      Add the following output directory: /dist/ssr

      If SSR + PWA mode
      Add build command: quasar build --mode ssr & quasar build --mode pwa
      Add the following output directory: /dist/ssr

      Press save when done.

      1. That’s it! You may now try to deploy your project to Zeit Now, and it should work 🙂

      In order to support SPA routing in the deployed app, consider adding now.json file in your root folder:
      {
      “routes”: [
      { “handle”: “filesystem” },
      { “src”: “/.*”, “dest”: “/index.html” }
      ]
      }

      posted in Help
      I
      Inklud