-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathnext.config.mjs
76 lines (70 loc) · 1.48 KB
/
next.config.mjs
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import { config as dotenv } from 'dotenv';
// @ts-check
/** @type {import("next").NextConfig} */
const config = {
env: dotenv().parsed,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'i.scdn.co',
pathname: '/image/*',
},
{
protocol: 'https',
hostname: 'snapshot.apple-mapkit.com',
pathname: '/api/v1/snapshot',
},
],
},
async redirects() {
return [
{
source: '/outro',
destination: 'https://www.youtube.com/watch?v=HeF11Av9WuU',
permanent: true,
},
{
source: '/desu',
destination: 'https://www.youtube.com/watch?v=HotGxCSas6A',
permanent: true,
},
{
source: '/10',
destination: 'https://youtu.be/G5HcvgepK-I',
permanent: true,
},
{
source: '/lulzsec',
destination: 'https://www.youtube.com/watch?v=DurOYPdXyF4',
permanent: true,
},
{
source: '/wheels',
destination: 'https://www.youtube.com/watch?v=9xRFN2i1cwQ',
permanent: true,
},
{
source: '/letterone',
destination: 'https://hyperfollow.com/alistair6/letter100-3',
permanent: true,
},
{
source: '/live-25-01-2024',
destination: 'https://www.youtube.com/watch?v=OvTy9xYH7LA',
permanent: true,
},
{
source: '/live-02-02-2024',
destination: 'https://youtube.com/watch?v=zEoTeUEElZc',
permanent: true,
},
{
source: '/live-04-07-2024',
destination: 'https://youtube.com/watch?v=-XsKN44b7ho',
permanent: true,
},
];
},
};
export default config;