Skip to content

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

Open
@Inventsable

Description

@Inventsable

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions