Skip to content

Commit 4412408

Browse files
replaced next-pwa with native manifest from next.js and added app icons
1 parent de2997f commit 4412408

18 files changed

+204
-319
lines changed

apps/frontend/.env.local

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ AUTH_GOOGLE_SECRET={CLIENT_SECRET}
2020
AUTH_GITHUB_ID={GITHUB_ID}
2121
AUTH_GITHUB_SECRET={GITHUB_ID}
2222

23-
DATABASE_URL={DATABASE_URL}
24-
DIRECT_URL={DIRECT_URL}
23+
DATABASE_URL=postgresql://postgres.pdoezpwsillhoosngmbp:a.7VX6r*K.DvtEx@aws-0-eu-west-2.pooler.supabase.com:6543/postgres?pgbouncer=true
24+
DIRECT_URL=postgresql://postgres.pdoezpwsillhoosngmbp:a.7VX6r*K.DvtEx@aws-0-eu-west-2.pooler.supabase.com:5432/postgres

apps/frontend/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,5 @@ next-env.d.ts
4646

4747
# generated files
4848
prisma/dev.db
49+
50+
certificates

apps/frontend/next.config.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,11 @@ import type { NextConfig } from 'next';
33
// @ts-expect-error missing types for this library
44
import withPlugins from 'next-compose-plugins';
55
import createNextIntlPlugin from 'next-intl/plugin';
6-
import withPwa from 'next-pwa';
76

87
const withBundleAnalyzer = createBundleAnalyzer({
98
enabled: process.env.ANALYZE === 'true',
109
});
1110

12-
const withPWA = withPwa({
13-
dest: 'public',
14-
});
15-
1611
const withNextIntl = createNextIntlPlugin();
1712

1813
const nextConfig: NextConfig = {
@@ -59,4 +54,4 @@ const nextConfig: NextConfig = {
5954
},
6055
};
6156

62-
export default withPlugins([withPWA, withBundleAnalyzer, withNextIntl], nextConfig);
57+
export default withPlugins([withBundleAnalyzer, withNextIntl], nextConfig);

apps/frontend/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"prepare": "npx prisma generate",
77
"init": "dotenv -e .env.local -- prisma migrate deploy",
88
"dev": "next dev --turbopack",
9+
"dev:https": "next dev --turbopack --experimental-https",
910
"build": "dotenv -e .env.local -- prisma migrate deploy && next build",
1011
"start": "next start",
1112
"lint": "tsc --noEmit && next lint",
@@ -35,7 +36,6 @@
3536
"next-auth": "^5.0.0-beta.25",
3637
"next-compose-plugins": "^2.2.1",
3738
"next-intl": "^3.26.1",
38-
"next-pwa": "^5.6.0",
3939
"react": "^19.0.0",
4040
"react-dom": "^19.0.0",
4141
"react-string-replace": "^1.1.1",
@@ -44,10 +44,10 @@
4444
"zod": "^3.24.2"
4545
},
4646
"devDependencies": {
47+
"@next/bundle-analyzer": "15.2.4",
4748
"@o2s/eslint-config": "*",
4849
"@o2s/prettier-config": "*",
4950
"@o2s/typescript-config": "*",
50-
"@next/bundle-analyzer": "15.2.4",
5151
"@svgr/webpack": "^8.1.0",
5252
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
5353
"@types/bcryptjs": "^2.4.6",
@@ -67,4 +67,4 @@
6767
"tsx": "^4.19.3",
6868
"typescript": "^5"
6969
}
70-
}
70+
}
7.29 KB
Loading

apps/frontend/public/favicon/favicon-96x96.png

Loading

apps/frontend/public/favicon/favicon.ico

Whitespace-only changes.
Lines changed: 5 additions & 0 deletions
Loading
8.62 KB
Loading
29.5 KB
Loading

0 commit comments

Comments
 (0)