Skip to content

Instantly share code, notes, and snippets.

View OwlyCode's full-sized avatar

Tristan Maindron OwlyCode

View GitHub Profile
@oal
oal / webpack.config.js
Last active October 26, 2017 09:49
Webpack config for Pixi.js using Babel.
'use strict';
var webpack = require('webpack');
var path = require('path');
module.exports = {
entry: './src/game.js',
output: {
filename: 'build/game.js'
},