Skip to content

Instantly share code, notes, and snippets.

View iamshaunjp's full-sized avatar
🎮
Fighting Dragons

Shaun (Net Ninja) iamshaunjp

🎮
Fighting Dragons
View GitHub Profile
/* index.css */
body{
background: #eee;
margin: 20px;
font-family: tahoma;
}
#todo-wrapper{
width: 80%;
var path = require('path');
module.exports = {
entry: path.resolve(__dirname, 'src') + '/app/index.js',
output: {
path: path.resolve(__dirname, 'dist') + '/app',
filename: 'bundle.js',
publicPath: '/app/'
},