1
0
mirror of https://github.com/fluencelabs/jsonpath synced 2025-04-02 06:51:05 +00:00
jsonpath/wasm/www/webpack.config.js

15 lines
310 B
JavaScript
Raw Normal View History

2019-03-03 00:33:27 +09:00
const CopyWebpackPlugin = require("copy-webpack-plugin");
const path = require('path');
module.exports = {
entry: "./bootstrap.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "bootstrap.js",
},
mode: "development",
plugins: [
new CopyWebpackPlugin(['index.html'])
]
};