Sasha 1bd7597db4
feat: add direct relay-rtc example (#260)
* add relay-rtc example

* add relay chat example

* update readme and texts

* add default node from go-waku prod fleet

* add ci steps

* update readme

* rename to relay-direct-chat

* rename to relay-direct-rtc
2023-10-03 01:03:48 +02:00

26 lines
489 B
JavaScript

const CopyWebpackPlugin = require("copy-webpack-plugin");
const path = require("path");
module.exports = {
entry: "./index.js",
output: {
path: path.resolve(__dirname, "build"),
filename: "index.js",
},
experiments: {
asyncWebAssembly: true,
},
mode: "development",
plugins: [
new CopyWebpackPlugin({
patterns: [
"index.html",
"favicon.ico",
"favicon.png",
"manifest.json",
"style.css",
],
}),
],
};