Skip to content

Commit 67edf1c

Browse files
committed
Move favicon to assets dir
1 parent 50b7102 commit 67edf1c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

noflo.ico app/noflo.ico

File renamed without changes.

index.dist.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<link rel="apple-touch-icon" sizes="152x152" href="app/<%= process.env.NOFLO_THEME %>-152.png">
1919
<link rel="icon" sizes="192x192" href="app/<%= process.env.NOFLO_THEME %>-192.png">
2020
<link rel="icon" sizes="128x128" href="app/<%= process.env.NOFLO_THEME %>-128.png">
21-
<link rel="shortcut icon" href="<%= process.env.NOFLO_THEME %>.ico" />
21+
<link rel="shortcut icon" href="app/<%= process.env.NOFLO_THEME %>.ico" />
2222
<script>
2323
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
2424
ga('create', '<%= process.env.NOFLO_ANALYTICS_ID %>', 'auto');

webpack.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ module.exports = {
190190
new CopyWebpackPlugin({
191191
patterns: [
192192
{
193-
from: 'noflo.ico',
194-
to: 'noflo.ico',
193+
from: 'app/*.ico',
194+
to: 'app',
195195
flatten: true,
196196
},
197197
{

0 commit comments

Comments
 (0)