You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
502 B
PHTML
26 lines
502 B
PHTML
9 years ago
|
<?php
|
||
|
|
||
|
// Enable debugging on the dev host but disable caching
|
||
|
c::set('debug', true);
|
||
|
c::set('cache', false);
|
||
|
|
||
|
// Disable assets suffix on the dev host
|
||
|
c::set('assets.suffix', '');
|
||
|
|
||
|
// Language setup with dev domains
|
||
|
c::set('languages', [
|
||
|
[
|
||
|
'code' => 'en',
|
||
|
'name' => 'English',
|
||
|
'default' => true,
|
||
|
'locale' => 'en_US',
|
||
7 years ago
|
'url' => 'http://codesignd.test',
|
||
9 years ago
|
],
|
||
|
[
|
||
|
'code' => 'de',
|
||
|
'name' => 'Deutsch',
|
||
|
'locale' => 'de_DE',
|
||
7 years ago
|
'url' => 'http://de.codesignd.test',
|
||
9 years ago
|
]
|
||
|
]);
|