bugfix: icon

This commit is contained in:
wataru 2023-01-14 18:56:32 +09:00
parent 2c997e7d2a
commit b02dc92633
12 changed files with 17 additions and 13 deletions

View File

@ -1,17 +1,17 @@
# Release Check List # Release Check List
## Run ## Run
- [] Anaconda on WSL2 - [ ] Anaconda on WSL2
- [] Docker on WSL2 - [ ] Docker on WSL2
- [] Anaconda on Linux - [ ] Anaconda on Linux
- [] Docker on Linux - [ ] Docker on Linux
- [] Colab simple - [ ] Colab simple
- [] Colab normal - [ ] Colab normal
- [] Windows exe - [ ] Windows exe
- [] Mac(M1) - [ ] Mac(M1)
## Doc ## Doc
- [] Readme - [ ] Readme
- [] Wiki - [ ] Wiki
- [] Zenn - [ ] Zenn

View File

Before

Width:  |  Height:  |  Size: 473 B

After

Width:  |  Height:  |  Size: 473 B

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 522 B

After

Width:  |  Height:  |  Size: 522 B

View File

Before

Width:  |  Height:  |  Size: 365 B

After

Width:  |  Height:  |  Size: 365 B

View File

Before

Width:  |  Height:  |  Size: 327 B

After

Width:  |  Height:  |  Size: 327 B

View File

Before

Width:  |  Height:  |  Size: 395 B

After

Width:  |  Height:  |  Size: 395 B

View File

Before

Width:  |  Height:  |  Size: 403 B

After

Width:  |  Height:  |  Size: 403 B

View File

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

File diff suppressed because one or more lines are too long

View File

@ -42,7 +42,7 @@ module.exports = {
filename: "./index.html", filename: "./index.html",
}), }),
new CopyPlugin({ new CopyPlugin({
patterns: [{ from: "public/assets", to: "asset" }], patterns: [{ from: "public/assets", to: "assets" }],
}), }),
new CopyPlugin({ new CopyPlugin({
patterns: [{ from: "public/favicon.ico", to: "favicon.ico" }], patterns: [{ from: "public/favicon.ico", to: "favicon.ico" }],

View File

@ -17,6 +17,10 @@ class MMVC_SocketIOApp():
'filename': f'{frontend_path}/assets/icons/github.svg', 'filename': f'{frontend_path}/assets/icons/github.svg',
'content_type': 'image/svg+xml' '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}',
'/': f'{frontend_path}/index.html', '/': f'{frontend_path}/index.html',
} }