Skip to content

Instantly share code, notes, and snippets.

View Dauli's full-sized avatar

Dauli Pamale Alexis Ange Dauli

  • Durban
View GitHub Profile
@Dauli
Dauli / webpack.config.dev.js
Created April 4, 2019 17:14 — forked from coryhouse/webpack.config.dev.js
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',