Skip to content

Commit 2eb5a68

Browse files
author
Ray Schamp
committed
Add favicon
1 parent 1756748 commit 2eb5a68

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

src/index.ejs

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<link rel="shortcut icon" href="static/favicon.ico">
67
<title><%= htmlWebpackPlugin.options.title %></title>
78
</head>
89
<body>

static/favicon.ico

33.7 KB
Binary file not shown.

webpack.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@ module.exports = {
103103
filename: 'player.html',
104104
title: 'Scratch 3.0 GUI: Player Example'
105105
}),
106+
new CopyWebpackPlugin([{
107+
from: 'static',
108+
to: 'static'
109+
}]),
106110
new CopyWebpackPlugin([{
107111
from: 'node_modules/scratch-blocks/media',
108112
to: 'static/blocks-media'

0 commit comments

Comments
 (0)