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

    lucaste

    @lucaste

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

    lucaste Follow

    Best posts made by lucaste

    • multiple entry points?

      Hi, im moving my app from vue cli3 + vuetify where in have two entry points.

      I’m using: https://cli.vuejs.org/config/#pages

      Is it possible to configure it with quasar cli?

      My vue.config.js file looks like that:

      module.exports = {
        pwa: {
          name: 'app'
        },
        devServer: {
          port: 5004
        },
        pages: {
          app: {
            entry: 'src/main.js',
            template: 'public/index.html',
            filename: 'index.html',
            excludeChunks: ['silent-refresh']
          },
          'silent-refresh': {
            entry: 'src/silent-refresh.js',
            template: 'public/silent-refresh.html',
            filename: 'silent-refresh.html',
            excludeChunks: ['app']
          }
        }
      }
      
      

      Thanks for any tips 🙂

      posted in CLI
      L
      lucaste

    Latest posts made by lucaste

    • Image to html canvas with q-uploader without uploading file to server

      Hi,

      I want to show image from file from q-uploader without uploading it to any server.

      I created this sandbox for tests but I think something is not syncing properly. After waiting for 100 miliseconds everything is working as expected but I’m sure there is better way to do this.

      https://codepen.io/lukasztyszko/pen/RwPzzEm

      Anyone with some more knowledge can explain me what I’m doing wrong?

      Thanks a lot.

      posted in Framework
      L
      lucaste
    • RE: multiple entry points?

      Due to no answers in some time I will try to add some detailed questions.

      Is it even possible to have multiple entry points with quasar cli?
      Maybe I can use some package or extension to build two js files in one time to one directory?

      If not how do you think I should hack this?
      Should I biuld my second entry point and copy it to statics folder?

      posted in CLI
      L
      lucaste
    • multiple entry points?

      Hi, im moving my app from vue cli3 + vuetify where in have two entry points.

      I’m using: https://cli.vuejs.org/config/#pages

      Is it possible to configure it with quasar cli?

      My vue.config.js file looks like that:

      module.exports = {
        pwa: {
          name: 'app'
        },
        devServer: {
          port: 5004
        },
        pages: {
          app: {
            entry: 'src/main.js',
            template: 'public/index.html',
            filename: 'index.html',
            excludeChunks: ['silent-refresh']
          },
          'silent-refresh': {
            entry: 'src/silent-refresh.js',
            template: 'public/silent-refresh.html',
            filename: 'silent-refresh.html',
            excludeChunks: ['app']
          }
        }
      }
      
      

      Thanks for any tips 🙂

      posted in CLI
      L
      lucaste