-
Notifications
You must be signed in to change notification settings - Fork 1
/
next.config.mjs
43 lines (41 loc) · 984 Bytes
/
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
const isDev = process.argv.indexOf('dev') !== -1
const isBuild = process.argv.indexOf('build') !== -1
if (!process.env.VELITE_STARTED && (isDev || isBuild)) {
process.env.VELITE_STARTED = '1'
const { build } = await import('velite')
await build({ watch: isDev, clean: !isDev })
}
/** @type {import('next').NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: '/ponovo',
destination: '/projects/ponovo',
},
{
source: '/sweetbeasts',
destination: '/projects/sweetbeasts',
},
{
source: '/sweetbeasts-admin',
destination: '/projects/sweetbeasts-admin',
},
]
},
async redirects() {
return [
{
source: '/tanks',
destination: 'https://www.youtube.com/watch?v=w69SsBIJABA',
permanent: true,
},
]
},
images: {
domains: [
'api.microlink.io', // Microlink Image Preview
],
},
}
export default nextConfig