We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
templates/base.html
{% extends "admin/base_site.html" %} ... <div id="content-main"> {% block content %}{% endblock %} </div> ...
templates/index.html
{% extends "base-vue.html" %} {% block content %} <div id="app"></div> {{ block.super }} {% endblock content %}
public/index.html
{% extends "base.html" %} {% block extrahead %} {{ block.super }} <%= htmlWebpackPlugin.files.css.map(src => `<link rel="stylesheet" type="text/css" href="${src}">`).join("\r\n ") %> {% endblock %} {% block content %} {{ block.super }} <%= htmlWebpackPlugin.files.js.map(src => `<script type="text/javascript" src="${src}"></script>`).join("\r\n ") %> {% endblock %}
vue.config.js
chainWebpack: (config) => { ... config.plugin("html").tap((args) => { args[0].inject = false; return args; }); ... }
https://github.com/jantimon/html-webpack-plugin/tree/main/examples/custom-insertion-position jantimon/html-webpack-plugin#1284
The text was updated successfully, but these errors were encountered:
No branches or pull requests
templates/base.html
templates/index.html
public/index.html
vue.config.js
https://github.com/jantimon/html-webpack-plugin/tree/main/examples/custom-insertion-position
jantimon/html-webpack-plugin#1284
The text was updated successfully, but these errors were encountered: