bugfix: icon
Before Width: | Height: | Size: 473 B After Width: | Height: | Size: 473 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 522 B After Width: | Height: | Size: 522 B |
Before Width: | Height: | Size: 365 B After Width: | Height: | Size: 365 B |
Before Width: | Height: | Size: 327 B After Width: | Height: | Size: 327 B |
Before Width: | Height: | Size: 395 B After Width: | Height: | Size: 395 B |
Before Width: | Height: | Size: 403 B After Width: | Height: | Size: 403 B |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.3 KiB |
2
client/demo/dist/index.js
vendored
@ -42,7 +42,7 @@ module.exports = {
|
||||
filename: "./index.html",
|
||||
}),
|
||||
new CopyPlugin({
|
||||
patterns: [{ from: "public/assets", to: "asset" }],
|
||||
patterns: [{ from: "public/assets", to: "assets" }],
|
||||
}),
|
||||
new CopyPlugin({
|
||||
patterns: [{ from: "public/favicon.ico", to: "favicon.ico" }],
|
||||
|
@ -17,6 +17,10 @@ class MMVC_SocketIOApp():
|
||||
'filename': f'{frontend_path}/assets/icons/github.svg',
|
||||
'content_type': 'image/svg+xml'
|
||||
},
|
||||
'/assets/icons/help-circle.svg': {
|
||||
'filename': f'{frontend_path}/assets/icons/help-circle.svg',
|
||||
'content_type': 'image/svg+xml'
|
||||
},
|
||||
'': f'{frontend_path}',
|
||||
'/': f'{frontend_path}/index.html',
|
||||
}
|
||||
|