Files
www/next.config.js
2025-04-03 20:21:05 +02:00

14 lines
370 B
JavaScript

/**
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
* for Docker builds.
*/
import './src/env.js'
import createNextIntlPlugin from 'next-intl/plugin'
/** @type {import("next").NextConfig} */
const config = {
output: 'standalone',
}
const withNextIntl = createNextIntlPlugin()
export default withNextIntl(config)