forked from semperai/amica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
66 lines (60 loc) · 1.81 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
const CopyPlugin = require("copy-webpack-plugin");
const withPWA = require('@ducanh2912/next-pwa').default({
dest: 'public',
});
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
assetPrefix: process.env.BASE_PATH || "",
basePath: process.env.BASE_PATH || "",
trailingSlash: true,
publicRuntimeConfig: {
root: process.env.BASE_PATH || "",
},
optimizeFonts: false,
webpack: (config, { webpack, buildId }) => {
// See https://webpack.js.org/configuration/resolve/#resolvealias
config.resolve.alias = {
...config.resolve.alias,
"sharp$": false,
"onnxruntime-node$": false,
}
config.plugins.push(
new CopyPlugin({
patterns: [
{
from: "./node_modules/onnxruntime-web/dist/ort-wasm-simd-threaded.wasm",
to: "static/chunks/[name][ext]",
},
{
from: "./node_modules/onnxruntime-web/dist/ort-wasm-threaded.wasm",
to: "static/chunks/[name][ext]",
},
{
from: "./node_modules/onnxruntime-web/dist/ort-wasm.wasm",
to: "static/chunks/[name][ext]",
},
{
from: "./node_modules/onnxruntime-web/dist/ort-wasm-simd.wasm",
to: "static/chunks/[name][ext]",
},
{
from: "node_modules/@ricky0123/vad-web/dist/vad.worklet.bundle.min.js",
to: "static/chunks/[name][ext]",
},
{
from: "node_modules/@ricky0123/vad-web/dist/*.onnx",
to: "static/chunks/[name][ext]",
},
],
})
);
config.plugins.push(
new webpack.DefinePlugin({
'process.env.NEXT_PUBLIC_CONFIG_BUILD_ID': JSON.stringify(buildId)
})
);
return config;
},
}
module.exports = withPWA(nextConfig);