mirror of
https://github.com/actions/configure-pages.git
synced 2026-03-30 01:54:51 +00:00
10 lines
208 B
JavaScript
10 lines
208 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: { images: { unoptimized: true } },
|
|
basePath: '/docs',
|
|
reactStrictMode: true,
|
|
swcMinify: true
|
|
}
|
|
|
|
module.exports = nextConfig
|