aboutsummaryrefslogtreecommitdiff
path: root/extension/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'extension/webpack.config.js')
-rw-r--r--extension/webpack.config.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/extension/webpack.config.js b/extension/webpack.config.js
deleted file mode 100644
index 543a8cc..0000000
--- a/extension/webpack.config.js
+++ /dev/null
@@ -1,25 +0,0 @@
-// Imports: Dependencies
-const path = require('path');
-// require("babel-register");// Webpack Configuration
-const config = {
-
- // Entry
- entry:'./content_script.js', // Output
- output: {
- path: path.resolve(__dirname, 'build'),
- filename: 'content_script.js',
- }, // Loaders
- module: {
- rules : [
- // JavaScript/JSX Files
- {
- test: /\.js$/,
- exclude: /node_modules/,
- use: ['babel-loader'],
- },
- ]
- },
- node: { fs: 'empty' },// Plugins
- plugins: [],
-};// Exports
-module.exports = config;