mirror of
https://github.com/benphelps/homepage.git
synced 2025-12-17 01:39:43 +01:00
8 lines
137 B
JavaScript
8 lines
137 B
JavaScript
|
|
/** @type {import('next').NextConfig} */
|
||
|
|
const nextConfig = {
|
||
|
|
reactStrictMode: true,
|
||
|
|
swcMinify: true,
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = nextConfig
|