-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathnext.config.mjs
57 lines (52 loc) · 1.46 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
import { setupDevPlatform } from '@cloudflare/next-on-pages/next-dev';
import allowedtexturesources from './config/allowedtexturesources.json' with { type: 'json' };
function getImageConfig() {
const config = {
remotePatterns: allowedtexturesources.map(resource => ({
hostname: resource.domain
}))
};
if (process.env.NEXT_PUBLIC_SUPABASE_PROJECT_ID) {
config.remotePatterns.push({
hostname: `${process.env.NEXT_PUBLIC_SUPABASE_PROJECT_ID}.supabase.co`
});
} else {
console.warn(
'NEXT_PUBLIC_SUPABASE_PROJECT_ID is not set, images from supabase will not be loaded'
);
config.unoptimized = true;
}
return config;
}
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images:
process.env.NODE_ENV === 'development'
? getImageConfig()
: {
loader: 'custom',
loaderFile: './lib/util/loader.ts'
},
async redirects() {
return [
{
source: '/editor/:id',
destination: '/view/:id',
permanent: true
}
];
},
async rewrites() {
return [
{
source: '/',
destination: '/list/1'
}
];
}
};
if (process.env.NODE_ENV === 'development') {
await setupDevPlatform();
}
export default nextConfig;