Files
base-front-project/node_modules/.bin/next
2026-04-13 08:21:07 +00:00

22 lines
1.9 KiB
Bash
Executable File

#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/next@16.1.6_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/bin/node_modules:/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/next@16.1.6_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/node_modules:/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/next@16.1.6_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/node_modules:/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/next@16.1.6_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules:/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/next@16.1.6_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/bin/node_modules:/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/next@16.1.6_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/node_modules:/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/next@16.1.6_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/node_modules:/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/next@16.1.6_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules:/home/aminghasempoor/create_local_front_app/witelflix/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../next/dist/bin/next" "$@"
else
exec node "$basedir/../next/dist/bin/next" "$@"
fi