-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.mjs
39 lines (36 loc) · 887 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
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 = {
reactStrictMode: true,
headers: async () => {
return [
{
// Allow indexing for main pages
source: '/:path*',
headers: [
{
key: 'X-Robots-Tag',
value: 'index,follow',
},
],
},
{
// Prevent indexing for API routes
source: '/api/:path*',
headers: [
{
key: 'X-Robots-Tag',
value: 'noindex,nofollow',
},
],
},
];
},
};
export default nextConfig;