From a22b61de5075783349ba6bac3acf5dc3f4377a4f Mon Sep 17 00:00:00 2001 From: Kyrylo Yakymenko Date: Sat, 2 May 2020 14:35:11 +0200 Subject: [PATCH] Update appName and appDescription in the manifest --- package.json | 2 +- webpack.config.js | 26 +++++++++++++++----------- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index 495896b..11f28a9 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "result-log", + "name": "relogify", "version": "0.1.0", "scripts": { "build": "bsb -make-world", diff --git a/webpack.config.js b/webpack.config.js index dcbda49..9bba1fb 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -14,35 +14,39 @@ module.exports = { output: { path: outputDir, publicPath: "/", - filename: "Index.js" + filename: "Index.js", }, plugins: [ new HtmlWebpackPlugin({ template: "src/index.html", favicon: "src/favicon.ico", - inject: true + inject: true, }), new FaviconsWebpackPlugin({ favicons: { + appName: "Relogify", + appDescription: + "Relogify is a web application for collecting and analyzing sports statistics.", + developerName: "Relogify AB", icons: { - favicons: false - } - } + favicons: false, + }, + }, }), - new Dotenv({ systemvars: true }) + new Dotenv({ systemvars: true }), ], devServer: { compress: true, contentBase: outputDir, port: process.env.PORT || 8000, - historyApiFallback: true + historyApiFallback: true, }, module: { rules: [ { test: cssRegex, - use: ["style-loader", "css-loader"] - } - ] - } + use: ["style-loader", "css-loader"], + }, + ], + }, };