We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1756748 commit 2eb5a68Copy full SHA for 2eb5a68
src/index.ejs
@@ -3,6 +3,7 @@
3
<head>
4
<meta charset="UTF-8">
5
<meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <link rel="shortcut icon" href="static/favicon.ico">
7
<title><%= htmlWebpackPlugin.options.title %></title>
8
</head>
9
<body>
static/favicon.ico
33.7 KB
webpack.config.js
@@ -103,6 +103,10 @@ module.exports = {
103
filename: 'player.html',
104
title: 'Scratch 3.0 GUI: Player Example'
105
}),
106
+ new CopyWebpackPlugin([{
107
+ from: 'static',
108
+ to: 'static'
109
+ }]),
110
new CopyWebpackPlugin([{
111
from: 'node_modules/scratch-blocks/media',
112
to: 'static/blocks-media'
0 commit comments