Skip to content

Instantly share code, notes, and snippets.

View meddy672's full-sized avatar
🎯
Focusing

Matthew James Eddy meddy672

🎯
Focusing
View GitHub Profile
@meddy672
meddy672 / webpack.config.js
Created November 25, 2021 10:23 — forked from DaniAkash/webpack.config.js
Webpack config with ES6, jquery, bootstrap and Hot Module Replacement support using webpack-dev-server. Dependencies needed by this configuration can be found in - https://gist.github.com/DaniAkash/6ec06b68033a5fe46fa68bfe3ce492fd
const webpack = require('webpack');
module.exports = {
context: __dirname,
entry: {
general: './src/js/general.js',
memes: './src/js/memes.js',
},
output: {
path: __dirname + "/dist",