Skip to content

Instantly share code, notes, and snippets.

View andrewvy's full-sized avatar

Vy andrewvy

  • code debt mediator
View GitHub Profile
const webpack = require("webpack");
const path = require("path");
// We'll set up some paths for our generated files and our development server
const staticDir = path.join(__dirname, ".");
const destDir = path.join(__dirname, "../priv/static");
const publicPath = "/";
// We'll be using the ExtractTextPlugin to extract any required CSS into a
// single CSS file