X-Git-Url: https://git.r.bdr.sh/rbdr/junction/blobdiff_plain/344f7c1320d512a423c9f2133959417823f5cc83..eadfca7b00e2fb48ffd6b2a0e06c2b6d7e427679:/extension/webpack.config.js diff --git a/extension/webpack.config.js b/extension/webpack.config.js index 9c6ad83..543a8cc 100644 --- a/extension/webpack.config.js +++ b/extension/webpack.config.js @@ -4,16 +4,16 @@ 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 : [ // JavaScript/JSX Files { - test: /\.jsx$/, + test: /\.js$/, exclude: /node_modules/, use: ['babel-loader'], }, @@ -22,4 +22,4 @@ const config = { node: { fs: 'empty' },// Plugins plugins: [], };// Exports -module.exports = config; \ No newline at end of file +module.exports = config;