Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .env.local
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
NEXT_PUBLIC_WC_PROJECT_ID=your_project_id_here
NEXT_PUBLIC_WC_PROJECT_ID=1ac26acf6371d43254aa7c9d285252e2
NEXT_PUBLIC_ENABLE_TESTNETS=false
NEXT_PUBLIC_BETA_ACCESS_CODE=your_code
NEXT_PUBLIC_BETA_ACCESS_CODE=your_code
JWT_SECRET=your_super_secret_jwt_key
SERVER_SECRET_ACCESS_CODE=yieldsogood
4 changes: 4 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
transpilePackages: ['@vanilla-extract', '@rainbow-me'],
reactStrictMode: true,
experimental: {
esmExternals: 'loose',
},
webpack: (config) => {
config.externals.push('pino-pretty', 'lokijs', 'encoding');
return config;
Expand Down
Loading