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. fwarren
    F
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 2
    • Best 0
    • Groups 0

    fwarren

    @fwarren

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

    fwarren Follow

    Latest posts made by fwarren

    • RE: Quasar in subfolder issue with hot reload - sockjs.js

      I also found that when proxying with nginx I had to completely stop and restart serving the app in dev mode to make changes to sockPath.

      posted in Help
      F
      fwarren
    • RE: Quasar in subfolder issue with hot reload - sockjs.js

      I have this working. Edit quasar.config.js and add to the devServer: {} block your desired path. In the example below I want the app served from /admin

      build: {
        vueRouterMode: 'hash, // available values: 'hash', 'history'
        publicPath: '/admin',
        ....
      },
      
      devServer: {
          sockPath: '/admin/sockjs-node',
          ....
      }
      posted in Help
      F
      fwarren