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. emmajnr
    E
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 3
    • Best 0
    • Groups 0

    emmajnr

    @emmajnr

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

    emmajnr Follow

    Latest posts made by emmajnr

    • RE: CopyWebpackPlugin usage question

      install robotstxt-webpack-plugin.js

      npm i robotstxt-webpack-plugin
      in your quasar.conf.js
      import

       const RobotstxtPlugin = require("robotstxt-webpack-plugin");
      const options = {
        filePath: "/robots.txt",
        policy: [
          {
            userAgent: "*",
            Allow: 'All',
            crawlDelay: 30
          }
        ],
        sitemap: "https://example.com/sitemap.xml",
        host: "https://example.com"
      };
      
        build: {
            scopeHoisting: true,
            vueRouterMode: "history", // available values: 'hash', 'history'
            showProgress: true,
            gzip: false,
            analyze: false,
            // Options below are automatically set depending on the env, set them if you want to override
            // preloadChunks: false,
            extractCSS: true,
      
            // https://quasar.dev/quasar-cli/cli-documentation/handling-webpack
            extendWebpack(cfg) {
              cfg.plugins.push(
                new RobotstxtPlugin(options)
              );
            }
          },
      
      posted in Help
      E
      emmajnr
    • RE: how to deploy SPA to Heroku?

      npm install -g @quasar/cli

      posted in Help
      E
      emmajnr
    • RE: Using BabylonJS

      facing the same issue

      posted in Help
      E
      emmajnr