Create basic WebGL example

This commit is contained in:
Ben Merritt
2018-09-15 23:28:15 -07:00
parent 285c734a6a
commit 426671d83c
12 changed files with 247 additions and 0 deletions

View File

@ -0,0 +1,16 @@
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
entry: './index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
},
plugins: [
new HtmlWebpackPlugin({
template: "index.html"
})
],
mode: 'development'
};