Last active
December 12, 2017 18:54
-
-
Save gitexec/aaa6ace9e7e4cc3b7994b5c79957df42 to your computer and use it in GitHub Desktop.
moving from gulp to webpack
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
//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