mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-03 06:12:14 +08:00
13 lines
264 B
JavaScript
13 lines
264 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";
|
||
|
|
|
||
|
|
/** @type {import("next").NextConfig} */
|
||
|
|
const config = {
|
||
|
|
devIndicators: false,
|
||
|
|
};
|
||
|
|
|
||
|
|
export default config;
|