forked from deepgram-devs/deepgram-ai-agent-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
73 lines (66 loc) · 1.85 KB
/
next.config.js
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
61
62
63
64
65
66
67
68
69
70
71
72
73
/** @type {import('next').NextConfig} */
const CopyPlugin = require("copy-webpack-plugin");
const wasmPaths = [
"./node_modules/onnxruntime-web/dist/ort-wasm.wasm",
"./node_modules/onnxruntime-web/dist/ort-wasm-threaded.wasm",
"./node_modules/onnxruntime-web/dist/ort-wasm-simd.wasm",
"./node_modules/onnxruntime-web/dist/ort-wasm-simd.jsep.wasm",
"./node_modules/onnxruntime-web/dist/ort-wasm-simd-threaded.wasm",
"./node_modules/onnxruntime-web/dist/ort-wasm-simd-threaded.jsep.wasm",
"./node_modules/onnxruntime-web/dist/ort-training-wasm-simd.wasm",
"./node_modules/@ricky0123/vad-web/dist/silero_vad.onnx",
"./node_modules/@ricky0123/vad-web/dist/vad.worklet.bundle.min.js",
];
const nextConfig = {
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ["@svgr/webpack"],
});
config.resolve.alias = {
...config.resolve.alias,
sharp$: false,
"onnxruntime-node$": false,
};
config.plugins.push(
new CopyPlugin({
patterns: wasmPaths.map((p) => ({
from: p,
to: "static/chunks/app",
})),
})
);
config.plugins.push(
new CopyPlugin({
patterns: wasmPaths.map((p) => ({
from: p,
to: "static/chunks",
})),
})
);
return config;
},
reactStrictMode: false,
async headers() {
return [
{
source: "/_next/(.*)",
headers: [
{
key: "Cross-Origin-Opener-Policy",
value: "require-corp",
},
{
key: "Cross-Origin-Embedder-Policy",
value: "require-corp",
},
],
},
];
},
env: {
// Add this to define your production domain for metadataBase
METADATA_BASE_URL: 'https://deepgram-conversational-demo-no7h9cpg8-outcall-ai.vercel.app'
}
};
module.exports = nextConfig;