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 : [
// JavaScript/JSX Files
{
- test: /\.jsx$/,
+ test: /\.js$/,
exclude: /node_modules/,
use: ['babel-loader'],
},
node: { fs: 'empty' },// Plugins
plugins: [],
};// Exports
-module.exports = config;
\ No newline at end of file
+module.exports = config;