Develop New Features Locally
Learn how you can develop new features for your web application locally.
We'll cover the following...
Local development
This is a good time to discuss how to develop new features. By default, Sapper web applications have a dev NPM script. To start the development server, run the following commands in the services/web directory.
npm install
npm run dev
Network requests fail
Due to the Firebase reserved URLs “/__/” that make it simpler to initialize our web application when it is deployed to Firebase Hosting, ...
Ask