Skip to content

Commit

Permalink
Update appName and appDescription in the manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
Yakimych committed May 2, 2020
1 parent 3019490 commit a22b61d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "result-log",
"name": "relogify",
"version": "0.1.0",
"scripts": {
"build": "bsb -make-world",
Expand Down
26 changes: 15 additions & 11 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
},
],
},
};

0 comments on commit a22b61d

Please sign in to comment.