1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-11-09 14:51:30 +01:00
.profile/next.config.js

14 lines
237 B
JavaScript
Raw Normal View History

/** @type {import('next').NextConfig} */
2022-10-03 20:52:15 +02:00
const nextConfig = {
reactStrictMode: true,
output: "standalone",
eslint: {
ignoreDuringBuilds: true,
},
experimental: {
serverActions: true,
},
2022-10-03 20:52:15 +02:00
}
module.exports = nextConfig