Skip to content

Instantly share code, notes, and snippets.

View filipalacerda's full-sized avatar
🤸‍♂️

Filipa Lacerda filipalacerda

🤸‍♂️
View GitHub Profile
@filipalacerda
filipalacerda / webpack.js
Created October 14, 2015 14:39 — forked from Couto/webpack.js
Fetch polyfill with webpack
var webpack = require('webpack');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var path = require('path');
var folders = {
APP: path.resolve(__dirname, '../app'),
BUILD: path.resolve(__dirname, '../build'),
BOWER: path.resolve(__dirname, '../bower_components'),
NPM: path.resolve(__dirname, '../node_modules')
};