Skip to content

Commit

Permalink
fixed filename casing
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayasanker Karakulath committed Nov 30, 2021
1 parent 8b5b50a commit b9e26cc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
File renamed without changes
2 changes: 1 addition & 1 deletion src/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<!-- FAV AND TOUCH ICONS -->
<link rel="icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" href="images/apple-touch-icon-small.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">

Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
];
Expand Down

0 comments on commit b9e26cc

Please sign in to comment.