diff options
Diffstat (limited to 'e2e/ambassador/webpack.config.js')
-rw-r--r-- | e2e/ambassador/webpack.config.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/e2e/ambassador/webpack.config.js b/e2e/ambassador/webpack.config.js new file mode 100644 index 0000000..d292317 --- /dev/null +++ b/e2e/ambassador/webpack.config.js @@ -0,0 +1,24 @@ +const path = require('path'); + +const src = path.resolve(__dirname, 'src'); +const dist = path.resolve(__dirname, 'build'); + +config = { + entry: { + content: path.join(src, 'content'), + background: path.join(src, 'background') + }, + + output: { + path: dist, + filename: '[name].js' + }, + + resolve: { + extensions: [ '.js' ], + modules: [path.join(__dirname, 'src'), 'node_modules'] + } +}; + +module.exports = config + |