mirror of
https://github.com/actions/configure-pages.git
synced 2026-04-03 16:22:24 +00:00
11 lines
208 B
JavaScript
11 lines
208 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: { unoptimized: true },
|
|
basePath: '/docs',
|
|
output: 'export',
|
|
reactStrictMode: true,
|
|
swcMinify: true
|
|
}
|
|
|
|
export default nextConfig
|