Add paint example

This commit is contained in:
Anton Danilkin
2018-09-13 02:10:23 +03:00
parent c6ede65856
commit 62b04e44c4
10 changed files with 178 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'
};