1
0
forked from baron/baron-sso
Files
baron-sso/test.sh
chan 62d3923dee fix(adminfront): resolve workspace dependency and build configuration issues
- Resolve 'vite' package entry point error by consolidating workspace dependencies
- Fix PostCSS/Tailwind module resolution by utilizing pnpm hoisting
- Update vite.config.ts to stable build configuration
2026-05-27 17:41:12 +09:00

12 lines
204 B
Bash

#!/bin/sh
export USERFRONT_FLUTTER_RUN_FLAGS=""
set -- flutter run \
--wasm \
${USERFRONT_FLUTTER_RUN_FLAGS:-} \
--no-web-resources-cdn
echo "Count: $#"
for arg in "$@"; do
echo "Arg: $arg"
done