Skip to content

Commit

Permalink
🩹 軽微な修正
Browse files Browse the repository at this point in the history
  • Loading branch information
ZEKE320 committed Dec 2, 2023
1 parent 2d39305 commit 3f87f82
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 18 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
dist/
.vscode/
.vscode/*
!.vscode/launch.json
11 changes: 6 additions & 5 deletions todo-map.code-workspace
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"folders": [
{
"path": "."
}
"folders": [
{
"name": "webpack",
"path": "."
}
],
"settings": {}
}
}
14 changes: 2 additions & 12 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,23 +60,13 @@ module.exports = {
title: "TODO Map",
template: "src/main/view/templates/todo-map.html",
filename: "index.html",
inject: true,
}),
new MiniCssExtractPlugin({
filename: "static/css/[name]-[contenthash].css",
}),
new FaviconsWebpackPlugin({
logo: "src/main/view/static/images/favicon-io/check-mark-button/favicon-16x16.png",
mode: "webapp",
devMode: "webapp",
inject: true,
favicons: {
icons: {
android: ["android-chrome-192x192.png", "android-chrome-512x512.png"],
appleIcon: ["apple-touch-icon.png"],
favicons: ["favicon-16x16.png", "favicon-32x32.png", "favicon.ico"],
},
},
logo: "src/main/view/static/images/favicon-io/check-mark-button/android-chrome-512x512.png",
prefix: "static/images/favicons/",
}),
],
};

0 comments on commit 3f87f82

Please sign in to comment.