Explain about ember mirage

Hi All, What are the uses of Mirage other than storing and fetching fake data. How does config.js file in mirage is different from Fixtures and Factories in functionality.What is the use of config.js ,while fixtures and factories can store the data.

Mirage is only for mocking your api.

So you can work on frontend without waiting for api to be ready. It’s also helpful in testing.

In config.js you setup you’r endpoints, and fixtures and factories are for storing and returning fake data.