Webassembly 기본

This commit is contained in:
freestrings
2019-03-03 00:33:27 +09:00
parent 7bf3bb59b0
commit 9c0d2f8689
41 changed files with 5949 additions and 38 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'])
]
};