mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-05-23 00:16:48 +00:00
b103d1a7f5
* feat(frontend): support static website demo mode * fix(frontend): render html artifact previews from blob content * chore(frontend): apply pre-commit formatting * fix(frontend): address static demo PR review comments * Update the release information of DeerFlow --------- Co-authored-by: Willem Jiang <willem.jiang@gmail.com>
25 lines
390 B
Makefile
25 lines
390 B
Makefile
install:
|
|
pnpm install
|
|
|
|
build:
|
|
pnpm build
|
|
|
|
dev:
|
|
pnpm dev
|
|
|
|
test:
|
|
pnpm test
|
|
|
|
test-e2e:
|
|
pnpm test:e2e
|
|
|
|
lint:
|
|
pnpm lint
|
|
|
|
format:
|
|
pnpm format:write
|
|
|
|
build-static:
|
|
NEXT_CONFIG_BUILD_OUTPUT=standalone SKIP_ENV_VALIDATION=1 NEXT_PUBLIC_STATIC_WEBSITE_ONLY=true pnpm build
|
|
@if [ -d .next/static ]; then mkdir -p .next/standalone/.next && cp -R .next/static .next/standalone/.next/static; fi
|