bombino icon indicating copy to clipboard operation
bombino copied to clipboard

Creating template from Vue-CLI model injects Quasar variables in ./public/index.html

Open Inventsable opened this issue 4 years ago • 0 comments

Upon creating a new template, bombino is injecting Quasar variables into the index.html file like so:

<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="$BOMBINO_QUASAR_DESC$" />
    <meta name="viewport" content="width=device-width$BOMBINO_QUASAR_WIDTH$"/>
    <title>$BOMBINO_QUASAR_HEADER$</title>
    <script src="./CSInterface.js"></script>

This instead should be:

<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width,initial-scale=1.0" />
    <title>$BOMBINO_NAME$</title>
    <script src="./CSInterface.js"></script>

Will be looking into why this is happening. If not fixed in the template, upon creating a new panel from this template and using npm run serve it throws an error about HTMLWebpackPlugin.ctx not existing.

Inventsable avatar Apr 26 '20 01:04 Inventsable