Skip to content

Commit f8c4512

Browse files
committed
browser demo
1 parent 7e8a20c commit f8c4512

11 files changed

+1041
-302
lines changed

next.config.mjs

+36-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,38 @@
1+
import CopyPlugin from "copy-webpack-plugin"
2+
13
/** @type {import('next').NextConfig} */
2-
const nextConfig = {};
4+
const nextConfig = {
5+
reactStrictMode: true,
6+
7+
webpack: (config, {}) => {
8+
config.resolve.extensions.push(".ts", ".tsx")
9+
config.resolve.fallback = { fs: false }
10+
11+
config.plugins.push(
12+
new CopyPlugin({
13+
patterns: [
14+
{
15+
from: "./node_modules/onnxruntime-web/dist/ort-wasm.wasm",
16+
to: "static/chunks/[name][ext]",
17+
},
18+
{
19+
from: "./node_modules/onnxruntime-web/dist/ort-wasm-simd.wasm",
20+
to: "static/chunks/[name][ext]",
21+
},
22+
{
23+
from: "node_modules/@ricky0123/vad-web/dist/vad.worklet.bundle.min.js",
24+
to: "static/chunks/[name][ext]",
25+
},
26+
{
27+
from: "node_modules/@ricky0123/vad-web/dist/*.onnx",
28+
to: "static/chunks/[name][ext]",
29+
},
30+
],
31+
})
32+
)
33+
34+
return config
35+
},
36+
}
337

4-
export default nextConfig;
38+
export default nextConfig

package.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,19 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12+
"@ricky0123/vad-react": "^0.0.24",
13+
"@ricky0123/vad-web": "^0.0.18",
1214
"next": "14.2.5",
15+
"onnxruntime-web": "^1.18.0",
1316
"react": "^18",
14-
"react-dom": "^18"
17+
"react-dom": "^18",
18+
"wavefile": "^11.0.0"
1519
},
1620
"devDependencies": {
1721
"@types/node": "^20",
1822
"@types/react": "^18",
1923
"@types/react-dom": "^18",
24+
"copy-webpack-plugin": "^11.0.0",
2025
"eslint": "^8",
2126
"eslint-config-next": "14.2.5",
2227
"postcss": "^8",

0 commit comments

Comments
 (0)