Skip to content

Instantly share code, notes, and snippets.

View shansana's full-sized avatar

Shansana Waruna shansana

View GitHub Profile
@shansana
shansana / webpack.config.js
Last active June 24, 2017 14:39 — forked from learncodeacademy/webpack.config.js
Sample Basic Webpack Config
var debug = process.env.NODE_ENV !== "production";
var webpack = require('webpack');
module.exports = {
context: __dirname,
devtool: debug ? "inline-sourcemap" : null,
entry: "./js/scripts.js",
output: {
path: __dirname + "/js",
filename: "scripts.min.js"