Skip to content

Commit

Permalink
[SSF] V1.0.2
Browse files Browse the repository at this point in the history
[Desc] Fix webpack config for Production mode
  • Loading branch information
Kyusoo committed Jan 29, 2022
1 parent b12a4bc commit b3beff4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simple-sharing-file",
"version": "1.0.1",
"version": "1.0.2",
"description": "Simple Sharing File",
"main": "dist/main.js",
"scripts": {
Expand Down
8 changes: 6 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,12 @@ module.exports = {
from: `${SRC}/renderer/index.html`
},
{
from: `${SRC}/server/views`,
to: `${DIST}/views`
from: `${SRC}/server/views/share.ejs`,
to: `${DIST}/views/share.ejs`
},
{
from: `${SRC}/server/views/close.ejs`,
to: `${DIST}/views/close.ejs`
}
]
}),
Expand Down

0 comments on commit b3beff4

Please sign in to comment.