Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 410 Bytes

run-example-apps.md

File metadata and controls

22 lines (18 loc) · 410 Bytes

Running Example Apps

Running examples can be done with:

pnpm next-with-deps ./examples/basic-css/

To figure out which pages are available for the given example, you can run:

EXAMPLE=./test/integration/basic
(\
  cd $EXAMPLE/pages; \
  find . -type f \
  | grep -v '\.next' \
  | sed 's#^\.##' \
  | sed 's#index\.js##' \
  | sed 's#\.js$##' \
  | xargs -I{} echo localhost:3000{} \
)