aboutsummaryrefslogtreecommitdiff
path: root/extension/webpack.config.js
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2020-09-27 21:05:11 +0200
committerRuben Beltran del Rio <ruben@unlimited.pizza>2020-09-27 21:05:11 +0200
commiteaca9f28abdf3e3ac9571498fb6c39ca2986ee77 (patch)
tree8bba2ae394f6342827c5724cfd86443fe87da35e /extension/webpack.config.js
parentd4fb48eb3793a93a8726652692b68592333dd778 (diff)
Update build to use content script
Diffstat (limited to 'extension/webpack.config.js')
-rw-r--r--extension/webpack.config.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/extension/webpack.config.js b/extension/webpack.config.js
index 9c6ad83..524d454 100644
--- a/extension/webpack.config.js
+++ b/extension/webpack.config.js
@@ -4,10 +4,10 @@ const path = require('path');
const config = {
// Entry
- entry:'./junction.js', // Output
+ entry:'./content_script.js', // Output
output: {
path: path.resolve(__dirname, 'build'),
- filename: 'junction.js',
+ filename: 'content_script.js',
}, // Loaders
module: {
rules : [
@@ -22,4 +22,4 @@ const config = {
node: { fs: 'empty' },// Plugins
plugins: [],
};// Exports
-module.exports = config; \ No newline at end of file
+module.exports = config;