mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-03 20:11:30 +01:00
11 lines
189 B
JavaScript
11 lines
189 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
output: "standalone",
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|