diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-08-25 22:42:52 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-08-25 22:42:52 +0200 |
| commit | 80172072ed99b14e3d5b435b097888a4621f78bc (patch) | |
| tree | 2f68a26d96ec2d7d659ed6672a6127979877c4e6 /extension/webpack.config.js | |
| parent | eadfca7b00e2fb48ffd6b2a0e06c2b6d7e427679 (diff) | |
Update dependencies
Diffstat (limited to 'extension/webpack.config.js')
| -rw-r--r-- | extension/webpack.config.js | 25 |
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; |