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. devpix
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 3
    • Best 0
    • Groups 0

    devpix

    @devpix

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

    devpix Follow

    Latest posts made by devpix

    • Electron: How to open new BrowserWindow with specific route (module)?

      I have an electron app and want to open a new Browserwindow with a specif quasar - module (route) within. I know that this will be a second vue app for its own and this is fine because i need a new process there.

      I found this solution:

      [https://forum.quasar-framework.org/topic/6548/how-to-open-a-specific-route-in-an-electron-browserwindow](link url)

      but i don’t get it how it works (I do not understand how to bring openUrl and “to” attribute together to open a window with specifc route).

      posted in Help
      D
      devpix
    • RE: Allow electron build despite of linting errors?

      @dobbel

      thanks, but did not help:
      even commenting out complete block has no effect. What helped was to add /src to .eslintignore. Now all is ignored which is fine to get it run but not for real developing…

      extendWebpack (cfg) {
              // linting is slow in TS projects, we execute it only for production builds
              if (ctx.prod) {
                cfg.module.rules.push({
                  enforce: 'pre',
                  test: /\.(js|vue)$/,
                  loader: 'eslint-loader',
                  exclude: /node_modules/,
                  options:{
                    emitWarning : true,
                    emitError : false
                  }
                })
              }
            }
      
      posted in Framework
      D
      devpix
    • Allow electron build despite of linting errors?

      I am just toying with quasar electron. but i do not get it to build the app, because i allways get linting errors which stop the build.

      did just (latestest versions) without any changes to the default demo app that comes with quasar out of the box:

      quasar create test-app # (selected typescript support and standard linting)
      quasar mode add electron 
      quasar dev -m electron # linting errors but works 
      quasar build -m electron # liniting errors  stop build
      

      after first run i got 10 liniting errors. after i tried to fix or ignore them i got new errors, this seems not to end. and now i am at a point i don’t know how to fix or ignore current linting errors.

      Linting may be a fine thing, but can i allow electron app to be build despite of linting errors?

      posted in Framework
      D
      devpix