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. iamsavinay
    I
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 1
    • Best 0
    • Groups 0

    iamsavinay

    @iamsavinay

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

    iamsavinay Follow

    Latest posts made by iamsavinay

    • RE: quasar and webpack-bundle-tracker

      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”)
      }
      });
      }

      posted in Help
      I
      iamsavinay