-
-
Save jerolan/e87bb55f5a0a7232b88c5f5cc67912c6 to your computer and use it in GitHub Desktop.
Sample Basic Webpack Config
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
var debug = process.env.NODE_ENV !== "production"; | |
var webpack = require('webpack'); | |
module.exports = { | |
context: __dirname, | |
devtool: debug ? "inline-sourcemap" : null, | |
entry: "./js/scripts.js", | |
output: { | |
path: __dirname + "/js", | |
filename: "scripts.min.js" | |
}, | |
plugins: debug ? [] : [ | |
new webpack.optimize.DedupePlugin(), | |
new webpack.optimize.OccurenceOrderPlugin(), | |
new webpack.optimize.UglifyJsPlugin({ mangle: false, sourcemap: false }), | |
], | |
}; |
acá tengo otra opciones que también pueden ser util.
https://gist.github.com/josemunozr/61291028a45cae5531cbbc2ea08c83fa
Yo también estoy siguiendo el curso. Gracias.
Yo también estoy siguiendo el curso. Gracias.
Siguiendo el curso. Gracias.
Thnk u !!!
siguiendo el curso
de donde sacaste las dependencias?
arranque el curso hoy..te comenze a seguir!
Arranque el curso bro (Y)
Gracias
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Gracias bro. Estoy viendo los videos del curso.