Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. lucaste
    3. Posts
    L
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    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