// README.md
Build a responsive, single-page application that displays and manages a list of teams and their members using a fake API (provided). The app should allow listing, filtering, and editing of team data.
npm install
npm run dev
npm run build
npm run preview
If you are using MSW (Mock Service Worker) in development, you need to initialize the service worker script:
npx msw init public/ --save
This will create the mockServiceWorker.js
file inside your public/
directory.
project-root/
āāā public/
ā āāā mockServiceWorker.js
npm run dev
ā ļø If this file is missing, MSW will fail to register and show a MIME type error in the browser console.