blob: cb78a72f1f10e92210818f8a3638292991a8f8d1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php /* Copyright (c) 2024 Freya Murphy */
$routes = array();
$routes[''] = 'home';
$routes['robots.txt'] = '_meta/robots';
$routes['sitemap.xml'] = '_meta/sitemap';
$routes['manifest.json'] = '_meta/manifest';
$serviceable = array('bucket');
|