mirror of
https://github.com/System-End/site.git
synced 2026-04-19 22:05:11 +00:00
7 lines
282 B
JavaScript
Executable file
7 lines
282 B
JavaScript
Executable file
const isProd = process.env.NODE_ENV === 'production'
|
|
const withMDX = require('@next/mdx')({ extension: /\.mdx?$/ })
|
|
module.exports = withMDX({
|
|
experimental: { trailingSlash: true },
|
|
pageExtensions: ['js', 'jsx', 'mdx'],
|
|
assetPrefix: isProd ? 'https://v3.hackclub.com' : ''
|
|
})
|