Skip to content

Instantly share code, notes, and snippets.

@gitexec
Last active December 12, 2017 18:54
Show Gist options
  • Save gitexec/aaa6ace9e7e4cc3b7994b5c79957df42 to your computer and use it in GitHub Desktop.
Save gitexec/aaa6ace9e7e4cc3b7994b5c79957df42 to your computer and use it in GitHub Desktop.
moving from gulp to webpack
//Support plugins/Libraries
const webpack = require('webpack');
const path = require('path');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
//Files/libraries paths
const webroot = "./wwwroot/";
const libraryPath = "./Libraries/";
const webBundlesPath = webroot + "Bundles/";
const webScriptsPath = webroot + "Scripts/";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment