mirror of
https://github.com/ershisan99/www.git
synced 2026-01-29 05:22:04 +00:00
add fumadocs
This commit is contained in:
15
next.config.mjs
Normal file
15
next.config.mjs
Normal file
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
|
||||
* for Docker builds.
|
||||
*/
|
||||
import './src/env.js'
|
||||
import { createMDX } from 'fumadocs-mdx/next'
|
||||
import createNextIntlPlugin from 'next-intl/plugin'
|
||||
|
||||
const withMDX = createMDX()
|
||||
/** @type {import("next").NextConfig} */
|
||||
const config = {
|
||||
output: 'standalone',
|
||||
}
|
||||
const withNextIntl = createNextIntlPlugin()
|
||||
export default withNextIntl(withMDX(config))
|
||||
Reference in New Issue
Block a user