Slide 21
Slide 21 text
WEBPACK.CONFIG.JS
Confident Asset Deployments @scottsburns
var path = require("path")
var webpack = require('webpack')
var BundleTracker = require('webpack-bundle-tracker')
module.exports = {
entry: {
app: ’./static/index.js’
},
output: {
path: path.resolve('./static/bundles/'),
filename: "[name]-[hash].js",
},...