mirror of
https://github.com/logos-messaging/examples.waku.org.git
synced 2026-01-02 04:43:07 +00:00
* use next.js tempalte * use next lint rules * alight UI * fix problem with margins * remove old page, rename to hooks * add constants * create RLN service, add utils * add RLN init * refactor a bit * add init for Keystore * add store functions * add styles * add contract hooks, add store fields, fix multiple downloads issue * add features * add keystore read logic * add import export * combine to useContract * add useWaku stub, add state to Waku block, styles * add creation of a node * add messages functionality * up readme * update CI * update readme * remove and rename, address comments * update readme * move const
14 lines
292 B
JavaScript
14 lines
292 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
webpack: (config) => {
|
|
config.externals.push({
|
|
"utf-8-validate": "commonjs utf-8-validate",
|
|
bufferutil: "commonjs bufferutil",
|
|
});
|
|
return config;
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|