aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-09-30 16:20:16 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-09-30 16:20:16 +0900
commit1145eb34784c1450b920f8e7d672934ef6a98d45 (patch)
treef076a7f2366af89177f2bbc45a6cf8866407f3d5 /webpack.config.js
parentc2a5a41cb6bc7780db580e6325e25b6a81729851 (diff)
parentc5efeda78cdf39e3eda1eabc5f89b601b1fcdb6e (diff)
Merge branch 'configurable-keymap'
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js
index ba08975..bf121d1 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -7,6 +7,7 @@ const dist = path.resolve(__dirname, 'build');
module.exports = {
entry: {
index: path.join(src, 'content'),
+ settings: path.join(src, 'settings'),
background: path.join(src, 'background'),
console: path.join(src, 'console', 'console.js')
},
@@ -46,6 +47,11 @@ module.exports = {
template: path.join(src, 'console', 'console.html'),
filename: path.join(dist, 'console.html'),
inject: false
+ }),
+ new HtmlWebpackPlugin({
+ template: path.join(src, 'settings', 'settings.html'),
+ filename: path.join(dist, 'settings.html'),
+ inject: false
})
]
};