Skip to content

Instantly share code, notes, and snippets.

@marensas
Created January 29, 2018 09:17
Show Gist options
  • Save marensas/b63ebd1b21a7ea77cf46c8a2272c9f81 to your computer and use it in GitHub Desktop.
Save marensas/b63ebd1b21a7ea77cf46c8a2272c9f81 to your computer and use it in GitHub Desktop.
Webpack2
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