aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-09-30 20:27:26 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-09-30 20:36:17 +0900
commit6551420e1ae0e91201de72e862e918dd3c97ab43 (patch)
tree1aa9de8949cd76c4f65adfc9424f63bf479669e9 /webpack.config.js
parent1145eb34784c1450b920f8e7d672934ef6a98d45 (diff)
move messages to content
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/webpack.config.js b/webpack.config.js
index bf121d1..f1ba07a 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -7,9 +7,9 @@ const dist = path.resolve(__dirname, 'build');
module.exports = {
entry: {
index: path.join(src, 'content'),
- settings: path.join(src, 'settings'),
+ settings: path.join(src, 'pages/settings'),
background: path.join(src, 'background'),
- console: path.join(src, 'console', 'console.js')
+ console: path.join(src, 'pages', 'console.js')
},
output: {
@@ -44,12 +44,12 @@ module.exports = {
plugins: [
new HtmlWebpackPlugin({
- template: path.join(src, 'console', 'console.html'),
+ template: path.join(src, 'pages', 'console.html'),
filename: path.join(dist, 'console.html'),
inject: false
}),
new HtmlWebpackPlugin({
- template: path.join(src, 'settings', 'settings.html'),
+ template: path.join(src, 'pages', 'settings.html'),
filename: path.join(dist, 'settings.html'),
inject: false
})