Move javascript examples directory under wasm

This commit is contained in:
freestrings
2020-02-15 00:56:07 +09:00
parent ffd87cfbe4
commit bab2ff38f7
11 changed files with 174 additions and 89 deletions

View File

@ -0,0 +1,14 @@
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'])
]
};