-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnext.config.ts
56 lines (54 loc) · 1010 Bytes
/
next.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'contrib.rocks',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'img.clerk.com',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'jxaztnbdaxoeftmzztcc.supabase.co',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'd3f1iyfxxz8i1e.cloudfront.net',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'encrypted-tbn0.gstatic.com',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'd2ms8rpfqc4h24.cloudfront.net',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'cdn.builder.io',
pathname: '/**',
},
],
dangerouslyAllowSVG: true,
},
async redirects() {
return [
{
source: '/teachers',
destination: '/teachers/dashboard',
permanent: false,
},
];
},
};
export default nextConfig;