Skip to content

Commit

Permalink
Merge pull request #5 from moleculeprotocol/demo-jalapeno
Browse files Browse the repository at this point in the history
Demos (broken) jalapeno encryption on SDK 2.2.62
  • Loading branch information
elmariachi111 authored May 20, 2024
2 parents 9081ff8 + 929a321 commit 0c35379
Show file tree
Hide file tree
Showing 12 changed files with 3,654 additions and 8,276 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID=
15 changes: 13 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
/** @type {import('next').NextConfig} */
const webpack = require('webpack')

const nextConfig = {
reactStrictMode: true,
output: 'export',
webpack: (config, options) => {
const plugins = [
...config.plugins,
new webpack.NormalModuleReplacementPlugin(/node:/, (resource) => {
resource.request = resource.request.replace(/^node:/, '')
})
]
return { ...config, plugins }
}
}

module.exports = nextConfig
module.exports = nextConfig
Loading

0 comments on commit 0c35379

Please sign in to comment.