-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnext.config.ts
More file actions
40 lines (37 loc) · 1005 Bytes
/
Copy pathnext.config.ts
File metadata and controls
40 lines (37 loc) · 1005 Bytes
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
import type { NextConfig } from "next";
// 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";
// import("velite").then((m) => m.build({ watch: isDev, clean: !isDev }));
// }
const nextConfig: NextConfig = {
cleanDistDir: true,
env: {
NEXT_PUBLIC_BASE_URL: `https://${process.env.VERCEL_PROJECT_PRODUCTION_URL}`,
},
experimental: {
viewTransition: true,
},
images: {
formats: ["image/webp"],
dangerouslyAllowSVG: true,
remotePatterns: [
{
protocol: "https",
hostname: "github.com",
},
{
protocol: "https",
hostname: "avatars.githubusercontent.com",
},
{
protocol: "https",
hostname: "img.shields.io",
},
],
},
pageExtensions: ["js", "jsx", "md", "mdx", "ts", "tsx"],
reactStrictMode: true,
};
export default nextConfig;