This commit is contained in:
2025-04-03 20:21:05 +02:00
parent 8333cbf7be
commit f595acff64
24 changed files with 2976 additions and 84 deletions

View File

@@ -3,8 +3,11 @@
* for Docker builds.
*/
import './src/env.js'
import createNextIntlPlugin from 'next-intl/plugin'
/** @type {import("next").NextConfig} */
const config = {}
export default config
const config = {
output: 'standalone',
}
const withNextIntl = createNextIntlPlugin()
export default withNextIntl(config)