File size: 423 Bytes
94f1dbe
b22027f
c921185
3fffa74
5973f95
 
271c11a
5973f95
 
 
 
 
 
 
94f1dbe
b22027f
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** @type {import('next').NextConfig} */
const nextConfig = {
  reactStrictMode: false,
  output: "export",
  webpack: (config) => {
    // See https://webpack.js.org/configuration/resolve/#resolvealias
    config.output.globalObject = "this";
    config.resolve.alias = {
      ...config.resolve.alias,
      sharp$: false,
      "onnxruntime-node$": false,
    };
    return config;
  },
};

module.exports = nextConfig;