mirror of
https://github.com/luxfi/forum.git
synced 2026-07-27 03:11:27 +00:00
14 lines
247 B
JavaScript
14 lines
247 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'export',
|
|
basePath: '/forum',
|
|
assetPrefix: '/forum/',
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
export default nextConfig;
|
|
// Build: 1766159423
|