-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from TheMhv/nostr
Feat: The app now run fully on the Nostr protocol
- Loading branch information
Showing
20 changed files
with
1,321 additions
and
238 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
RVC_API_HOST=127.0.0.1 | ||
RVC_API_PORT=8000 | ||
# For Models, you can separe strings by ','. Example: | ||
# MODELS="model,model2,model3" | ||
|
||
MAX_TEXT_LENGTH=200 | ||
MIN_SATOSHI_QNT=10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = {}; | ||
const nextConfig = { | ||
images: { | ||
remotePatterns: [ | ||
{ | ||
hostname: '**', | ||
}, | ||
], | ||
} | ||
}; | ||
|
||
export default nextConfig; |
Oops, something went wrong.