You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
+if (message.includes('Using WarpDrive with EmberJS requires')) {
170
+
+return;
171
+
+ } else {
172
+
+next(message, options);
173
+
+ }
174
+
+});
175
+
+
176
+
if (macroCondition(isDevelopingApp())) {
177
+
```
178
+
179
+
```run:command hidden=true cwd=super-rentals
180
+
git add app/app.js
181
+
```
182
+
160
183
Running the tests in the browser confirms that everything is working as intended:
161
184
162
185
```run:command hidden=true cwd=super-rentals
@@ -272,18 +295,14 @@ Let's start customizing the things that didn't work for us by default. Specifica
272
295
The first thing we want to do is have our builder respect a configurable default host and/or namespace. Adding a namespace prefix happens to be pretty common across Ember apps, so EmberData provides a global config mechanism for host and namespace. Typically you will want to do this either in your store file or app file.
Adding the `.json` extension is a bit less common, and doesn't have a declarative configuration API of its own. We could just modify request options directly in place of use, but that would be a bit messy. Instead, let's create a handler to do this for us.
0 commit comments