Skip to content

Instantly share code, notes, and snippets.

View SOG-web's full-sized avatar
🇳🇬
Technology in my veins

Olalekan Raheem SOG-web

🇳🇬
Technology in my veins
View GitHub Profile
@coryhouse
coryhouse / webpack.config.dev.js
Last active April 15, 2023 15:08
Development Webpack config for "Building a JavaScript Development Environment" on Pluralsight
import path from 'path';
export default {
debug: true,
devtool: 'inline-source-map',
noInfo: false,
entry: [
path.resolve(__dirname, 'src/index')
],
target: 'web',