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

    Topics created by jmpmcmanus

    • J

      popup-proxy window size
      Framework • • jmpmcmanus

      3
      0
      Votes
      3
      Posts
      586
      Views

      Hawkeye64

      Whatever QPopupProxy has for it’s default slot, this is where you would adjust height and width, commonly via style="width: 300px; height: 400px;"

    • J

      quasar and webpack-bundle-tracker
      Help • • jmpmcmanus

      3
      0
      Votes
      3
      Posts
      336
      Views

      I

      Add publicpath: "http://localhost:8080/" in the arguments… now it works

      extendWebpack(cfg) {
      cfg.plugins.push(
      new BundleTracker({
      filename: “webpack-stats.json”,
      publicPath: “http://localhost:8080/”
      })
      ),
      cfg.module.rules.push({
      enforce: “pre”,
      test: /.(js|vue)$/,
      loader: “eslint-loader”,
      exclude: /node_modules/,
      options: {
      formatter: require(“eslint”).CLIEngine.getFormatter(“stylish”)
      }
      });
      }