-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.ts
60 lines (54 loc) · 1.17 KB
/
next.config.ts
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
58
59
60
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
experimental: {
reactCompiler: {
compilationMode: "annotation",
},
serverActions: {
allowedOrigins: ["localhost:3000", "stubby.io"],
},
},
serverExternalPackages: [],
images: {
remotePatterns: [
{ hostname: "avatars.githubusercontent.com" },
{ hostname: "i.stubby.io" },
],
},
logging: {
fetches: {
fullUrl: true,
},
},
reactStrictMode: false,
rewrites: async () => {
return [
{
source: "/api/v1/sites/:siteId/folders",
destination: "/api/v1/sites/:siteId/collections",
},
];
},
webpack: function (config: any, { isServer }: any) {
config.experiments = {
layers: true,
asyncWebAssembly: true,
syncWebAssembly: true,
};
if (!isServer) {
config.output.environment = {
...config.output.environment,
asyncFunction: true,
};
}
config.module.rules.push({
test: /\.mdx$/i,
loader: "raw-loader",
});
return config;
},
sassOptions: {
silenceDeprecations: ["legacy-js-api"],
},
};
export default nextConfig;