| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- 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.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);
|