From 269d10ba2d2e59176f8e18dc434b69835ad25dbb Mon Sep 17 00:00:00 2001 From: Chris Manson Date: Fri, 5 Jul 2024 16:29:57 +0100 Subject: [PATCH 1/2] stop using rootUrl to fix netlify previews and deployments --- config/environment.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/config/environment.js b/config/environment.js index f10ae25..3a23b2c 100644 --- a/config/environment.js +++ b/config/environment.js @@ -47,8 +47,6 @@ module.exports = function (environment) { } if (environment === 'production') { - ENV.rootURL = '/ember-data-request-service-cheat-sheet'; - ENV.locationType = 'hash'; } return ENV; From beb8c7d8aef6bd8e36eedeb9cd2f5373dc4a7c97 Mon Sep 17 00:00:00 2001 From: Chris Manson Date: Fri, 5 Jul 2024 16:31:34 +0100 Subject: [PATCH 2/2] fix lint --- config/environment.js | 1 + 1 file changed, 1 insertion(+) diff --git a/config/environment.js b/config/environment.js index 3a23b2c..f9b1128 100644 --- a/config/environment.js +++ b/config/environment.js @@ -47,6 +47,7 @@ module.exports = function (environment) { } if (environment === 'production') { + // production config } return ENV;