Skip to content

Commit

Permalink
Remove informational version
Browse files Browse the repository at this point in the history
  • Loading branch information
VikingTristan committed Feb 2, 2021
1 parent e2cd5ba commit ff36ca3
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ module.exports = (env, argv) => {
const isGitHubActions = env && env.github_actions === "true";
const baseUrl = env && env.baseUrl ? env.baseUrl : null;
const basename = env && env.basename ? `/${env.basename}/` : "/";
const infoVersion = env && env.info_version ? env.info_version : "LOCAL_DEV";

const config = {
entry: {
Expand Down Expand Up @@ -218,10 +217,7 @@ module.exports = (env, argv) => {
new HtmlWebpackPlugin({
template: "./src/index.html",
hash: true,
title: `${brandTitle} DesignGuide`,
meta: {
"informational-version": infoVersion
}
title: `${brandTitle} DesignGuide`
}),
new MiniCssExtractPlugin({
filename: "styles/[name].css"
Expand Down

0 comments on commit ff36ca3

Please sign in to comment.