Created
January 29, 2018 09:17
-
-
Save marensas/b63ebd1b21a7ea77cf46c8a2272c9f81 to your computer and use it in GitHub Desktop.
Webpack2
This file contains hidden or 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 webpack = require('webpack'); | |
var path = require('path'); | |
module.exports = { | |
entry: './src', | |
output: { | |
path: path.resolve(__dirname, './public'), | |
filename: 'index.js' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment