wavelength_server/next.config.js
2025-01-13 16:48:53 -06:00

14 lines
265 B
JavaScript
Executable File

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