mirror of
https://github.com/luxfi/math.git
synced 2026-07-27 03:38:49 +00:00
- Add clear method to Set type - Add documentation site structure - Update Go module version
21 lines
356 B
JavaScript
21 lines
356 B
JavaScript
import { createMDX } from "fumadocs-mdx/next"
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
output: 'export',
|
|
reactStrictMode: true,
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
experimental: {
|
|
webpackBuildWorker: true,
|
|
},
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
}
|
|
|
|
const withMDX = createMDX()
|
|
|
|
export default withMDX(config)
|