Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
xgovernor committed May 15, 2024
1 parent d2b7535 commit f2568f6
Show file tree
Hide file tree
Showing 14 changed files with 867 additions and 404 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ yarn-debug.log*
yarn-error.log*

# local env files
.env
.env*.local

# vercel
Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion .nvmrc.txt

This file was deleted.

16 changes: 13 additions & 3 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,19 @@ const nextConfig = {
hostname: "avatars.githubusercontent.com",
// port: '',
// pathname: '/my-bucket/**',
},
{
protocol: "https",
hostname: "*.googleusercontent.com",
// port: '',
// pathname: '/my-bucket/**',
}
],
},
// experimental: {
experimental: {
taint: true,
// instrumentationHook: true
// },
},
async redirects() {
return [
{
Expand Down Expand Up @@ -115,4 +122,7 @@ const withBundleAnalyzer = require("@next/bundle-analyzer")({
enabled: process.env.BUNDLE_ANALYZE || false,
});

module.exports = withBundleAnalyzer(withPWA(nextConfig));
// module.exports = withBundleAnalyzer(withPWA(nextConfig));

// Without PWA, Bundle analyzer support
module.exports = nextConfig;
21 changes: 10 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@
"changelog": "node scripts/create-changelog"
},
"dependencies": {
"@auth/core": "^0.28.0",
"@fluentui/react-components": "^9.41.0",
"@next/bundle-analyzer": "^14.0.4",
"@next/bundle-analyzer": "^14.2.3",
"@next/third-parties": "^14.0.1",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
Expand All @@ -46,14 +45,14 @@
"framer-motion": "^10.16.4",
"geist": "^1.2.0",
"lucide-react": "^0.298.0",
"next": "^14.0.5-canary.5",
"next-auth": "^5.0.0-beta.15",
"next": "^14.2.3",
"next-auth": "^5.0.0-beta.18",
"next-pwa": "^5.6.0",
"prettier-plugin-tailwindcss": "^0.5.9",
"react": "^18",
"react-dom": "^18",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.0.4",
"sass": "^1.69.5",
"sass": "^1.77.1",
"scss": "^0.2.4",
"server-only": "^0.0.1",
"swr": "^2.2.4",
Expand All @@ -68,8 +67,8 @@
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@testing-library/react": "^14.1.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/redux-logger": "3.0.9",
"@types/semver": "^7",
"@typescript-eslint/eslint-plugin": "^7.1.1",
Expand All @@ -78,7 +77,7 @@
"autoprefixer": "^10.0.1",
"commitlint": "^18.2.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.0.3",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^8.0.3",
Expand All @@ -94,7 +93,7 @@
"tailwindcss": "^3.3.0",
"typescript": "^5",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.0.4"
"vitest": "^1.6.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
Expand Down
Loading

1 comment on commit f2568f6

@vercel
Copy link

@vercel vercel bot commented on f2568f6 May 15, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.