Kaleem Khan
1 min readJul 18, 2017

--

date: 18th July, 2017

This is the most simple post I found for the javascript project setup.

Just one thing to note here, now following line will not work

path: './build',

we need to install the path package

npm install path

and change ‘webpacj-config.js’ to use

const path = require(‘path’);output: {
path: path.resolve(‘./build/’),
filename: ‘bundle.js’
},

--

--