1
0
forked from baron/baron-sso

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
This commit is contained in:
2026-05-27 17:41:12 +09:00
parent 14b916fec8
commit 62d3923dee
4 changed files with 323 additions and 43 deletions

11
test.sh Normal file
View File

@@ -0,0 +1,11 @@
#!/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