mirror of
https://github.com/actions/configure-pages.git
synced 2026-03-29 17:34:52 +00:00
11 lines
239 B
JavaScript
11 lines
239 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: { unoptimized: true },
|
|
experimental: { images: { unoptimized: true } },
|
|
basePath: '/docs',
|
|
reactStrictMode: true,
|
|
swcMinify: true
|
|
}
|
|
|
|
export default nextConfig
|