-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathinertia.php
61 lines (47 loc) · 1.67 KB
/
inertia.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
return [
/*
|--------------------------------------------------------------------------
| Force top-level property interaction
|--------------------------------------------------------------------------
|
| This setting allows you to toggle the automatic property interaction
| check for your page's top-level properties. While this feature is
| useful in property scopes, it is generally not as useful on the
| top-level of the page, as it forces you to interact with each
| (shared) property on the page, or to use the `etc` method.
|
*/
'force_top_level_property_interaction' => false,
/*
|--------------------------------------------------------------------------
| Page
|--------------------------------------------------------------------------
|
| The values described here are used to locate Inertia components on the
| filesystem. For instance, when using `assertInertia`, the assertion
| attempts to locate the component as a file relative to any of the
| paths AND with any of the extensions specified here.
|
*/
'page' => [
/**
* Determines whether assertions should check that Inertia page components
* actually exist on the filesystem instead of just checking responses.
*/
'should_exist' => true,
/*
* A list of root paths to your Inertia page components.
*/
'paths' => [
resource_path('js/Pages'),
],
/*
* A list of valid Inertia page component extensions.
*/
'extensions' => [
'vue',
// 'svelte',
],
],
];