#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")

case `uname` in
    *CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac

if [ -z "$NODE_PATH" ]; then
  export NODE_PATH="/opt/bytelyst/learning_ai_fastgap/node_modules/.pnpm/vite@6.4.1_@types+node@22.19.15_jiti@2.6.1_lightningcss@1.32.0_terser@5.46.1_tsx@4.21.0_yaml@2.8.3/node_modules/vite/bin/node_modules:/opt/bytelyst/learning_ai_fastgap/node_modules/.pnpm/vite@6.4.1_@types+node@22.19.15_jiti@2.6.1_lightningcss@1.32.0_terser@5.46.1_tsx@4.21.0_yaml@2.8.3/node_modules/vite/node_modules:/opt/bytelyst/learning_ai_fastgap/node_modules/.pnpm/vite@6.4.1_@types+node@22.19.15_jiti@2.6.1_lightningcss@1.32.0_terser@5.46.1_tsx@4.21.0_yaml@2.8.3/node_modules:/opt/bytelyst/learning_ai_fastgap/node_modules/.pnpm/node_modules"
else
  export NODE_PATH="/opt/bytelyst/learning_ai_fastgap/node_modules/.pnpm/vite@6.4.1_@types+node@22.19.15_jiti@2.6.1_lightningcss@1.32.0_terser@5.46.1_tsx@4.21.0_yaml@2.8.3/node_modules/vite/bin/node_modules:/opt/bytelyst/learning_ai_fastgap/node_modules/.pnpm/vite@6.4.1_@types+node@22.19.15_jiti@2.6.1_lightningcss@1.32.0_terser@5.46.1_tsx@4.21.0_yaml@2.8.3/node_modules/vite/node_modules:/opt/bytelyst/learning_ai_fastgap/node_modules/.pnpm/vite@6.4.1_@types+node@22.19.15_jiti@2.6.1_lightningcss@1.32.0_terser@5.46.1_tsx@4.21.0_yaml@2.8.3/node_modules:/opt/bytelyst/learning_ai_fastgap/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
  exec "$basedir/node"  "$basedir/../../../../../learning_ai_fastgap/node_modules/.pnpm/vite@6.4.1_@types+node@22.19.15_jiti@2.6.1_lightningcss@1.32.0_terser@5.46.1_tsx@4.21.0_yaml@2.8.3/node_modules/vite/bin/vite.js" "$@"
else
  exec node  "$basedir/../../../../../learning_ai_fastgap/node_modules/.pnpm/vite@6.4.1_@types+node@22.19.15_jiti@2.6.1_lightningcss@1.32.0_terser@5.46.1_tsx@4.21.0_yaml@2.8.3/node_modules/vite/bin/vite.js" "$@"
fi
