wavelength_server/next.config.js

14 lines
265 B
JavaScript
Raw Normal View History

/**
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
* for Docker builds.
*/
2025-01-13 16:48:53 -06:00
import './src/env.js';
/** @type {import("next").NextConfig} */
2024-10-25 16:57:49 -05:00
const config = {
2025-01-13 16:48:53 -06:00
output: 'standalone',
2024-10-25 16:57:49 -05:00
};
export default config;
2025-01-13 16:48:53 -06:00