From f58d8b515d219cfafeec2bad0a0e07d25d5e12f1 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Tue, 24 Jul 2018 13:38:11 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8c30bc0..1ea6dad 100644 --- a/README.md +++ b/README.md @@ -21,12 +21,12 @@ Sapper expects to find three directories in the root of your project — `app`, ### app -The [app](app) directory contains the entry points for your app — `client.js`, `server.js` and (optionally) a `service-worker.js` — along with your main `App.html` component. +The [app](app) directory contains the entry points for your app — `client.js`, `server.js` and (optionally) a `service-worker.js` — along with a `template.html` file. ### assets -The [assets](assets) directory contains any static assets that should be available. These are served using [serve-static](https://github.com/expressjs/serve-static). +The [assets](assets) directory contains any static assets that should be available. These are served using [sirv](https://github.com/lukeed/sirv). In your [service-worker.js](app/service-worker.js) file, you can import these as `assets` from the generated manifest...