Remove hot parameter from HMR url

Summary: This is the last piece of work to make all the clients do a single request for both HMR/non-HMR modes. I'm not completely sure how this URL is used by the client, but it does not need the `hot` param.

Reviewed By: davidaurelio

Differential Revision: D5639946

fbshipit-source-id: a76f9ba7b9ace625352a156761d3ee2809f80c92
This commit is contained in:
Rafael Oleza 2017-08-16 18:57:10 -07:00 committed by Facebook Github Bot
parent 409a2ae809
commit e4acb91914
1 changed files with 1 additions and 1 deletions

View File

@ -327,7 +327,7 @@ class Bundler {
'?' +
'platform=' +
(platform || '') +
'&runModule=false&entryModuleOnly=true&hot=true'
'&runModule=false&entryModuleOnly=true'
);
}