Files
siv/next.config.js
2021-11-04 00:45:31 -07:00

21 lines
491 B
JavaScript

// @ts-check
/* eslint-disable @typescript-eslint/no-var-requires */
const withMDX = require('@next/mdx')()
const withTM = require('next-transpile-modules')(['lodash-es'])
/**
* @type {import('next').NextConfig}
**/
const nextConfig = withMDX(
withTM({
typescript: {
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// ignoreBuildErrors: true,
},
}),
)
module.exports = nextConfig