Skip to content

Commit

Permalink
feat: twitch api connection, chat badges, channel button
Browse files Browse the repository at this point in the history
- added ability to fetch from twitch api with app id/secret, fetched by the client by fetching from peepochat's own API.
 - currently, this includes stream, user, and badge info.
- added global twitch chat badges to the chat
- added WIP channel button component
- added loading progress indicator
- custom error page
  • Loading branch information
Dan-Mizu committed Jul 11, 2024
1 parent f51edb0 commit 7554225
Show file tree
Hide file tree
Showing 25 changed files with 1,441 additions and 228 deletions.
5 changes: 5 additions & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ export default defineNuxtConfig({
},

runtimeConfig: {
twitchAppClientId: '',
twitchAppClientSecret: '',
public: {
version,
userAgent: `${name}/${version} (${author.email})`,
Expand All @@ -39,9 +41,11 @@ export default defineNuxtConfig({
'@pinia-plugin-persistedstate/nuxt',
'@nuxtjs/i18n',
'@nuxtjs/seo',
'@nuxt/image',
],

srcDir: 'src',
serverDir: 'server',

components: [
{
Expand Down Expand Up @@ -75,4 +79,5 @@ export default defineNuxtConfig({
},

devtools: { enabled: true },
compatibilityDate: '2024-07-03',
});
Loading

0 comments on commit 7554225

Please sign in to comment.