Skip to content

Commit 2abd480

Browse files
committed
Merge branch 'develop' of https://github.com/hasnaintypes/ai-email-generator into develop
2 parents 3d5e5d0 + 24f1fa3 commit 2abd480

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

next.config.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,17 @@ export default withNextra({
99
turbopack: {
1010
root: path.join(__dirname, "."),
1111
},
12+
images: {
13+
remotePatterns: [
14+
{
15+
protocol: "https",
16+
hostname: "img.freepik.com",
17+
},
18+
{
19+
protocol: "https",
20+
hostname: "encrypted-tbn0.gstatic.com",
21+
},
22+
],
23+
},
1224
reactStrictMode: false,
1325
});

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"dev:backend": "convex dev --typecheck-components",
1111
"dev:build": "chokidar 'tsconfig*.json' 'src/**/*.ts' 'src/**/*.tsx' -i '**/*.test.ts' -c 'pnpm build' --initial",
1212
"predev": "convex dev --skip-push && node -e \"if (!require('fs').existsSync('dist')) require('fs').mkdirSync('dist', { recursive: true })\"",
13-
"build": "convex codegen && next build",
13+
"build": "next build",
14+
"build:codegen": "convex codegen && next build",
1415
"typecheck": "tsc --noEmit && tsc -p convex --noEmit",
1516
"lint": "eslint src convex",
1617
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\" \"convex/**/*.{ts,js}\"",

0 commit comments

Comments
 (0)