This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |