-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
41 lines (37 loc) · 1.17 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/**
* NSM Asset Rev plugin for Craft CMS 3.x
*
* Various fields for CraftCMS
*
* @link http://newism.com.au
* @copyright Copyright (c) 2017 Leevi Graham
*/
/**
* NSM Asset Rev config.php
*
* Completely optional configuration settings for NSM Asset Rev if you want to customize some
* of its more esoteric behavior, or just want specific control over things.
*
* Don't edit this file, instead copy it to 'craft/config' as 'nsm-asset-rev.php' and make
* your changes there.
*
* Once copied to 'craft/config', this file will be multi-environment aware as well, so you can
* have different settings groups for each environment, just as you do for 'general.php'
*/
return array(
'*' => [
/**
* Fully qualified path to your manifest file
*/
'manifestPath' => CRAFT_BASE_PATH.'/manifest.json',
/**
* Prefixed to the manifest value.
*
* If the final url assetUrlPrefix + manifest url is relative the siteUrl
* will be appended. If the final qualified url is absolute or contains a
* fully qualified domain it will not be modified.
*/
'assetUrlPrefix' => '',
],
);