Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. bompus
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 5
    • Best 1
    • Groups 0

    bompus

    @bompus

    4
    Reputation
    16
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    bompus Follow

    Best posts made by bompus

    • RE: robots.txt in root?

      This is actually possible. If there is a better way to do this, somebody please let me know.

      I put all of the files/folders in /src/rootFolder/ and this moves all of those during dev/build to the / folder when it builds or runs the dev server.

      quasar.conf.js , require copy-webpack-plugin up top, then add a line to build.extendWebpack

      const CopyWebpackPlugin = require('copy-webpack-plugin');
      /// ...
      extendWebpack(cfg) {
         cfg.plugins.push(new CopyWebpackPlugin([{ from: 'src/rootFolder/', to: '' }]));
        /// ...
      }
      
      posted in Help
      B
      bompus

    Latest posts made by bompus

    • RE: Quasar v1.14.4/5 released!

      v1.14.5 has been released to fix the “no css” issue.

      posted in Announcements
      B
      bompus
    • RE: Quasar v1.14.4/5 released!

      @rstoenescu I’m not sure what may have triggered it, but when I upgrade to v1.14.4, quasar dev / quasar build compiles me an empty quasar.sass ( /* top comment only */ ), so I end up with completely unstyled components. Updating package.json to pin “quasar”: “1.14.3” and install fixes the issue… pin it back to “1.14.4” and no css again.

      Pkg quasar… v1.14.4
      Pkg @quasar/app… v2.1.7

      Pkg quasar… v1.14.3
      Pkg @quasar/app… v2.1.7

      posted in Announcements
      B
      bompus
    • Anyone attending VueConf US - Austin, TX ?

      Just curious if anyone else is attending. I’d love to meet up and say hi, have someone else there to hang out with.

      posted in Hangout
      B
      bompus
    • RE: robots.txt in root?

      This is actually possible. If there is a better way to do this, somebody please let me know.

      I put all of the files/folders in /src/rootFolder/ and this moves all of those during dev/build to the / folder when it builds or runs the dev server.

      quasar.conf.js , require copy-webpack-plugin up top, then add a line to build.extendWebpack

      const CopyWebpackPlugin = require('copy-webpack-plugin');
      /// ...
      extendWebpack(cfg) {
         cfg.plugins.push(new CopyWebpackPlugin([{ from: 'src/rootFolder/', to: '' }]));
        /// ...
      }
      
      posted in Help
      B
      bompus
    • RE: Quasar v1.0.0-beta.11 and @quasar/app v1.0.0-beta.12 released!

      Awesome. Thank you for all the hard work in making Quasar possible. It’s much appreciated.

      posted in Announcements
      B
      bompus