forked from baron/baron-sso
- 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
12 lines
204 B
Bash
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
|