-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy pathnext.config.mjs
More file actions
47 lines (43 loc) · 1.16 KB
/
Copy pathnext.config.mjs
File metadata and controls
47 lines (43 loc) · 1.16 KB
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
import createMDX from "@next/mdx"
const withMDX = createMDX({
extension: /\.mdx?$/,
})
/** @type {import('next').NextConfig} */
const nextConfig = withMDX({
pageExtensions: ["js", "jsx", "ts", "tsx", "md", "mdx"],
async redirects() {
return [
{
source: "/components/:slug*",
destination: "/docs/:slug*",
permanent: true,
},
]
},
async rewrites() {
return [
{
source: "/ingest/static/:path*",
destination: "https://eu-assets.i.posthog.com/static/:path*",
},
{
source: "/ingest/:path*",
destination: "https://eu.i.posthog.com/:path*",
},
{
source: "/ingest/decide",
destination: "https://eu.i.posthog.com/decide",
},
]
},
// This is required to support PostHog trailing slash API requests
skipTrailingSlashRedirect: true,
})
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 })
}
export default nextConfig