Added sample project files.

This commit is contained in:
photonstorm
2017-07-31 17:17:07 +01:00
parent f211da59f6
commit bf0e27242b
6 changed files with 99 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
'use strict';
const webpack = require('webpack');
const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'build'),
filename: 'project.bundle.js'
},
plugins: [
]
};