This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/mirage/config.js
2015-11-02 16:38:34 -07:00

11 lines
274 B
JavaScript

export default function() {
// Don't use mirage for development (for now)
this.urlPrefix = 'http://127.0.0.1:8901';
this.namespace = 'api';
this.passthrough();
}
export function testConfig() {
this.urlPrefix = 'http://127.0.0.1:8901';
this.namespace = 'api';
}