Disabled mirage in development

closes https://github.com/TryGhost/Ghost/issues/10414
- mirage's `passthrough()` was not allowing `/ghost/assets/simplemde/simplemde.js` to hit the backend server which was breaking markdown cards
This commit is contained in:
Kevin Ansfield 2019-01-23 09:37:33 +00:00
parent 1885d0a193
commit 337b0614ed

View File

@ -47,7 +47,7 @@ module.exports = function (environment) {
// Enable mirage here in order to mock API endpoints during development
ENV['ember-cli-mirage'] = {
enabled: true
enabled: false
};
}