Development
Test on Desktop
- If node/npm are not installed, install using https://github.com/nvm-sh/nvm or https://nodejs.org/en/download
cdto the project root and runnpm install.

- Run
npm run serveto run the development server. Once the local server is running, you will see the URL/IP addresses your project is running at.

- Open a new browser window and paste in the loopback URL or IP address to test your project in development mode.

Test on Mobile
To test your project on mobile devices, especially for AR experiences that require camera access, you'll need to serve your development server over HTTPS. We recommend using ngrok to create a secure tunnel to your local server.
After setting up ngrok, add the following configuration to config/webpack.config.js under the devServer section:
devServer: {
// ... existing config
allowedHosts: ['.ngrok-free.dev']
}