parcel-plugin-appcache-php
v0.1.1
Published
Parcel plugin for generating an appcache manifest
Downloads
4
Readme
parcel-plugin-appcache
Parcel plugin for generating an appcache manifest
PHP version: appcache is referenced as name.appcache.php
, but generated as name.appcache
Use this PHP stub for necessary actions
<?php
header("Cache-Control: max-age=0, no-cache, no-store, must-revalidate");
header("Pragma: no-cache");
header("Expires: Wed, 11 Jan 1984 05:00:00 GMT");
header("Content-Type: text/cache-manifest");
readfile("name.appcache");