1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-18 21:55:52 +02:00
.profile/next.config.js

11 lines
189 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: "standalone",
eslint: {
ignoreDuringBuilds: true,
},
}
module.exports = nextConfig