]> git.r.bdr.sh - rbdr/junction/blobdiff - extension/webpack.config.js
Update build to use content script
[rbdr/junction] / extension / webpack.config.js
index 9c6ad83ecb310df1710767d250214e8214ff87e8..524d4544465e972016067ef66cd9854f6dc52205 100644 (file)
@@ -4,10 +4,10 @@ const path = require('path');
 const config = {
 
     // Entry
 const config = {
 
     // Entry
-    entry:'./junction.js',  // Output
+    entry:'./content_script.js',  // Output
     output: {
         path: path.resolve(__dirname, 'build'),
     output: {
         path: path.resolve(__dirname, 'build'),
-        filename: 'junction.js',
+        filename: 'content_script.js',
     },  // Loaders
     module: {
         rules : [
     },  // Loaders
     module: {
         rules : [
@@ -22,4 +22,4 @@ const config = {
     node: { fs: 'empty' },// Plugins
     plugins: [],
 };// Exports
     node: { fs: 'empty' },// Plugins
     plugins: [],
 };// Exports
-module.exports = config;
\ No newline at end of file
+module.exports = config;