From b2f03810058408032f2e400a5b0d5b2ff95b8640 Mon Sep 17 00:00:00 2001
From: Bob Thomas <robert.w.thomas@gmail.com>
Date: Fri, 25 Jan 2019 17:30:12 -0500
Subject: [PATCH] Fix path to built template

`dist/ng-immutable-example/index.ejs` is not generated by a CRA build. This was probably a copy/paste error. The actual `index.html` ejs template is output to `build/index.html`
---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 9970116..938890c 100644
--- a/README.md
+++ b/README.md
@@ -108,7 +108,7 @@ PUBLIC_URL=<%=PUBLIC_URL%>
 REACT_APP_ENV=<%-JSON.stringify(env)%>
 ```
 
-#### `dist/ng-immutable-example/index.ejs`
+#### `build/index.html`
 
 __The immutable template that is published along with the other versioned, immutable assets.__ It is combined with `config.json` to render the `index.html` that is a deployment manifest.
 
@@ -199,4 +199,4 @@ REACT_APP_ENV={ api: "https://localhost:3001/api" }
 
 ## Future Work
 
-This project will be updated as better patterns for building Immutable Web Apps are established and as [Create React App](https://github.com/facebook/create-react-app) changes.
\ No newline at end of file
+This project will be updated as better patterns for building Immutable Web Apps are established and as [Create React App](https://github.com/facebook/create-react-app) changes.