aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-09-02 10:08:49 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-09-02 10:08:49 +0900
commit044f24efb64ec52dfdb02e0e0807bc4545c4a21c (patch)
tree1cb621bd8ea538e128a7263012d3c8bc077e2e0d /webpack.config.js
parentf1b9c6ba9d33fe1927c4855d4981d88ad73d5818 (diff)
parent02ea10a357955752dda4c72c49de2340997c9818 (diff)
Merge branch 'error-line'
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/webpack.config.js b/webpack.config.js
index f34d203..ba08975 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -8,7 +8,7 @@ module.exports = {
entry: {
index: path.join(src, 'content'),
background: path.join(src, 'background'),
- 'command-line': path.join(src, 'command-line', 'command-line.js')
+ console: path.join(src, 'console', 'console.js')
},
output: {
@@ -43,8 +43,8 @@ module.exports = {
plugins: [
new HtmlWebpackPlugin({
- template: path.join(src, 'command-line', 'command-line.html'),
- filename: path.join(dist, 'command-line.html'),
+ template: path.join(src, 'console', 'console.html'),
+ filename: path.join(dist, 'console.html'),
inject: false
})
]