summaryrefslogtreecommitdiffstats
path: root/examples/with-nextjs/next.config.js
blob: 701438ebfaa28a37afd2c1b2375fb962465d63da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/** @type {import('next').NextConfig} */
const nextConfig = {
  distDir: "build",
  typescript: {
    // The ts config doesn't work with `jsx: preserve" and if updated to `react-jsx` it gets ovewritten by next js throwing ts errors hence I am ignoring build errors until this is fixed.
    ignoreBuildErrors: true,
  },
  // This is needed as in pages router the code for importing types throws error as its outside next js app
  transpilePackages: ["../"],
};

module.exports = nextConfig;