Webpack Config

Webpack Config

unlisted ⁨1⁩ ⁨file⁩ 2022-03-11 17:22:20 UTC

webpack.config.js

Raw
const path = require('path');

module.exports = {
  entry: './public/home/scripts/_mongo.js',
  mode: 'development',
  output: {
   filename: 'mongo.js',
    path: path.resolve(__dirname, '..', 'public', 'home', 'scripts'),
  },
};