diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-08-12 11:08:43 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-08-12 11:22:09 +0900 |
commit | e73d405c5640afda27775285f19516a271b5cefb (patch) | |
tree | da08aefd9c5f718f96aff84c4f2c95554796999b /webpack.config.js | |
parent | d169661e030e53b6a1635f86205f9fc42d2b7ef2 (diff) |
message passing between background and content
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index 4b3ed7a..bb1568d 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -5,7 +5,8 @@ const dist = path.resolve(__dirname, 'build'); module.exports = { entry: { - index: path.join(src, 'index.js') + index: path.join(src, 'content'), + background: path.join(src, 'background') }, output: { |