Skip to content

Commit

Permalink
Merge pull request #108 from SweetmanTech/tech322/chatRoom
Browse files Browse the repository at this point in the history
Tech322/chat room
  • Loading branch information
techeng322 authored Jun 12, 2024
2 parents b02aedf + fe3f625 commit 2892039
Show file tree
Hide file tree
Showing 208 changed files with 8,599 additions and 6,080 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version: 18
node-version: 20
registry-url: "https://npm.pkg.github.com"

- name: Get yarn cache directory path
Expand Down
16 changes: 4 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz

# testing
/coverage
Expand All @@ -23,26 +24,17 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
.env*.local
.env.local
.env.development.local
.env.test.local
.env.production.local
# db account keys
utils/db/serviceAccountKey.json

# vercel
.vercel

# typescript
*.tsbuildinfo

# ENV
.env
.env.*
.env.local
.env.production

# Testing
pages/api/temp.ts
next-env.d.ts
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

26 changes: 0 additions & 26 deletions components/SeoHead/SeoHead.tsx

This file was deleted.

3 changes: 0 additions & 3 deletions components/SeoHead/index.ts

This file was deleted.

9 changes: 0 additions & 9 deletions next.config.js

This file was deleted.

25 changes: 25 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.sanity.io",
},
{
protocol: "https",
hostname: "pbs.twimg.com",
},
{
protocol: "https",
hostname: "f005.backblazeb2.com",
}
],
},
reactStrictMode: true,
compiler: {
styledComponents: true,
}
};

export default nextConfig;
Loading

0 comments on commit 2892039

Please sign in to comment.