## Changes: - /docs is now a Getting Started page with the first tutorial - basic-example added
8 lines
137 B
JavaScript
8 lines
137 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
}
|
|
|
|
module.exports = nextConfig
|