Add existing code

This commit is contained in:
Gennady Grishkovtsov
2018-07-23 12:00:58 +03:00
parent ff7cb590c5
commit 95a9700d50
22 changed files with 10295 additions and 2 deletions

17
webpack.dev.js Normal file
View File

@@ -0,0 +1,17 @@
const path = require('path')
const HtmlWebpackPlugin = require('html-webpack-plugin')
module.exports = {
devtool: '#eval-source-map',
entry: './demo/index.js',
output: {
path: path.resolve(__dirname, './demo')
},
plugins: [
new HtmlWebpackPlugin({
filename: 'index.html',
template: './demo/index.html'
})
]
}