File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 8
8
### Contents
9
9
- [ Install] ( #install )
10
10
- [ Usage] ( #usage )
11
+ - [ Configuration] ( #configuration )
11
12
- [ Testing] ( #testing )
12
13
- [ Contributing] ( #contributing )
13
14
@@ -75,6 +76,15 @@ php artisan vueg:mixin MyMixin --path=assets/js/custom/folder
75
76
```
76
77
Will create a file called MyMixin.vue at resources/assets/js/custom/folder/MyMixin.vue.
77
78
79
+ ### Configuration
80
+ Set default paths for components and mixins. All paths are relative to Laravel's resources directory.
81
+ ``` php
82
+ 'paths' => [
83
+ 'components' => 'path/to/components',
84
+ 'mixins' => 'path/to/mixins',
85
+ ]
86
+ ```
87
+
78
88
### Testing
79
89
```
80
90
composer test
Original file line number Diff line number Diff line change 6
6
| Paths
7
7
|--------------------------------------------------------------------------
8
8
|
9
- | Register default paths for file types.
9
+ | Register default paths for file types. All paths are relative to Laravel's
10
+ | resources directory.
10
11
*/
11
12
'paths ' => [
12
13
'components ' => 'assets/js/components ' ,
You can’t perform that action at this time.
0 commit comments