mirror of
https://github.com/soconnor0919/hristudio.git
synced 2026-03-23 19:27:51 -04:00
- Fixed client bundle contamination by moving child_process-dependent code - Created standalone /api/robots/command route for SSH robot commands - Created plugins router to replace robots.plugins for plugin management - Added getStudyPlugins procedure to studies router - Fixed trial.studyId references to trial.experiment.studyId - Updated WizardInterface to use REST API for robot commands
14 lines
387 B
JavaScript
Executable File
14 lines
387 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 nextConfig = {
|
|
// Mark server-only packages as external to prevent bundling in client
|
|
serverExternalPackages: ["postgres", "minio", "child_process"],
|
|
};
|
|
|
|
export default nextConfig;
|