diff --git a/package.json b/package.json index 8e24bef..574b85a 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/webpack.config.js b/webpack.config.js index 02c4f68..9c4c4c5 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -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` } ] }),