From 7e281f059003df171fe3d1de5edcef643cfc1558 Mon Sep 17 00:00:00 2001 From: Joe White Date: Fri, 23 May 2014 06:35:23 -0500 Subject: [PATCH] Remove local HTTP server's cache-control header. Disable the local HTTP server's cache-control header, to fix the problem where the browser wouldn't reload templateUrl-based directive templates. Fixes #193. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5035daf20b..f7baed0106 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "postinstall": "bower install", "prestart": "npm install", - "start": "http-server -a localhost -p 8000", + "start": "http-server -a localhost -p 8000 -c-1", "pretest": "npm install", "test": "karma start test/karma.conf.js",