From b9e26cc246c6d39d222b6b4123c4cbc7f0466196 Mon Sep 17 00:00:00 2001 From: Jayasanker Karakulath Date: Tue, 30 Nov 2021 02:01:19 -0500 Subject: [PATCH] fixed filename casing --- package.json | 2 +- ...le-touch-icon.PNG => apple-touch-icon-small.png} | Bin src/index.hbs | 2 +- webpack.config.js | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename src/images/{apple-touch-icon.PNG => apple-touch-icon-small.png} (100%) diff --git a/package.json b/package.json index d9e1535..cfd12db 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.", "main": "src/index.js", "scripts": { - "build": "webpack", + "build": "webpack --mode production", "start": "webpack serve --mode development" }, "repository": { diff --git a/src/images/apple-touch-icon.PNG b/src/images/apple-touch-icon-small.png similarity index 100% rename from src/images/apple-touch-icon.PNG rename to src/images/apple-touch-icon-small.png diff --git a/src/index.hbs b/src/index.hbs index b0f4095..429b982 100644 --- a/src/index.hbs +++ b/src/index.hbs @@ -19,7 +19,7 @@ - + diff --git a/webpack.config.js b/webpack.config.js index 35ebc0e..71cdffb 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -27,7 +27,7 @@ const vendorLibs = [ const copyAssets = [ "images/favicon.ico", - "images/apple-touch-icon.png", + "images/apple-touch-icon-small.png", "images/apple-touch-icon-72x72.png", "images/apple-touch-icon-114x114.png", ];