CryptoAssist/client/webpack.config.js

17 lines
366 B
JavaScript
Raw Normal View History

2017-02-14 10:26:27 +00:00
var path = require("path");
var HtmlWebpackPlugin = require("html-webpack-plugin");
var webpack = require("webpack");
module.exports = {
context: path.join(__dirname, "src"),
entry: "./index.js",
output: {
path: path.join(__dirname, "build"),
filename: "app.js"
},
plugins: [
new HtmlWebpackPlugin({
template: "./index.html"
})
]
}