1
1
# intervention-request-provider
2
- [ InterventionRequest] ( https://github.com/ambroisemaupate/intervention-request ) provider for [ @nuxt/image-edge ] ( https://github.com/nuxt/image )
2
+ [ InterventionRequest] ( https://github.com/ambroisemaupate/intervention-request ) provider for [ @nuxt/image ] ( https://github.com/nuxt/image )
3
3
4
- This library is built for ** Nuxt 3** .
4
+ This is a ** Nuxt 3** module .
5
5
6
6
## Installation
7
7
8
8
``` sh
9
- yarn add @rezo-zero/intervention-request-provider@next
10
- ```
11
- or
12
- ``` sh
13
- npm install @rezo-zero/intervention-request-provider@next
9
+ npm install --save-dev @rezo-zero/intervention-request-provider @nuxt/image
14
10
```
15
11
16
- - Register Nuxt module ` @rezo-zero/intervention-request-provider `
17
- - Add the provider to ` @nuxt/image-edge ` module as described [ here] ( https://image.nuxtjs.org/advanced/custom-provider ) .
12
+ - Register Nuxt module ` @rezo-zero/intervention-request-provider ` and ` @nuxt/image ` :
18
13
19
14
``` ts
20
- // nuxt.config.ts
21
- modules : [
22
- ' @nuxt/image-edge' ,
23
- ' @rezo-zero/intervention-request-provider'
24
- ],
25
- runtimeConfig : {
26
- public : {
27
- interventionRequest : {
28
- baseUrl : process .env .NUXT_PUBLIC_INTERVENTION_REQUEST_BASE_URL ?? ' http://localhost:8080/assets' ,
29
- noProcessBaseUrl : process .env .NUXT_PUBLIC_INTERVENTION_REQUEST_NO_PROCESS_BASE_URL ?? ' http://localhost:8080/images' ,
30
- imagesPath : ' images'
31
- }
32
- }
33
- }
34
- image : {
35
- provider : ' interventionRequest' ,
36
- providers : {
37
- interventionRequest : {
38
- name : ' interventionRequest' ,
39
- provider : ' ~/node_modules/@rezo-zero/intervention-request-provider/dist/runtime/index' ,
40
- options : {
41
- imagesPath : ' images'
42
- }
43
- }
44
- }
45
- }
15
+ // nuxt.config.ts
16
+ modules : [
17
+ ' @rezo-zero/intervention-request-provider' ,
18
+ ' @nuxt/image'
19
+ ]
46
20
```
47
21
48
22
## Setup
49
23
50
24
### baseUrl
51
25
52
26
- As a runtime config variable (preferred)
53
-
54
- ``` js
55
- // nuxt.config.ts
56
- runtimeConfig: {
57
- public: {
58
- interventionRequest: {
59
- baseUrl: process .env .NUXT_PUBLIC_INTERVENTION_REQUEST_BASE_URL ?? ' http://localhost'
60
- }
61
- }
62
- }
27
+ ``` dotenv
28
+ #.env
29
+ NUXT_PUBLIC_INTERVENTION_REQUEST_BASE_URL=https://example.com/assets
63
30
```
64
31
65
- - As a @nuxt/image provider option
32
+ - As a ` @nuxt/image ` provider option
66
33
67
34
``` js
68
35
// nuxt.config.ts
@@ -80,27 +47,20 @@ npm install @rezo-zero/intervention-request-provider@next
80
47
### noProcessBaseUrl
81
48
82
49
- As a runtime config variable (preferred)
83
-
84
- ` ` ` js
85
- // nuxt.config.ts
86
- runtimeConfig: {
87
- public: {
88
- interventionRequest: {
89
- noProcessBaseUrl: process .env .NUXT_PUBLIC_INTERVENTION_REQUEST_NO_PROCESS_BASE_URL ?? ' http://localhost/images'
90
- }
91
- }
92
- }
50
+ ``` dotenv
51
+ #.env
52
+ NUXT_PUBLIC_INTERVENTION_REQUEST_NO_PROCESS_BASE_URL=https://example.com/assets
93
53
```
94
54
95
- - As a @nuxt/image provider option
55
+ - As a ` @nuxt/image ` provider option
96
56
97
57
``` js
98
58
// nuxt.config.ts
99
59
image: {
100
60
providers: {
101
61
interventionRequest: {
102
62
options: {
103
- noProcessBaseUrl: ' http ://localhost /images'
63
+ noProcessBaseUrl: ' https ://example.com /images'
104
64
}
105
65
}
106
66
}
@@ -109,6 +69,12 @@ npm install @rezo-zero/intervention-request-provider@next
109
69
110
70
### imagesPath (see [ InterventionRequest configuration] ( https://github.com/ambroisemaupate/intervention-request#configuration ) )
111
71
72
+ - As a runtime config variable (preferred)
73
+ ``` dotenv
74
+ #.env
75
+ NUXT_PUBLIC_INTERVENTION_REQUEST_IMAGES_PATH=images
76
+ ```
77
+
112
78
``` js
113
79
// nuxt.config.ts
114
80
image: {
@@ -130,12 +96,12 @@ See [InterventionRequest operations](https://github.com/ambroisemaupate/interven
130
96
## Contributing
131
97
132
98
1 . Clone this repository
133
- 2. Install dependencies using ` yarn install`
99
+ 2 . Install dependencies using ` npm install`
134
100
3 . Start Docker server ([ InterventionRequest] ( https://github.com/ambroisemaupate/intervention-request#ready-to-go-docker-image ) ) using ` docker-compose up -d `
135
- 4. Start development server using ` yarn dev`
101
+ 4 . Start development server using ` npm run dev`
136
102
137
103
## Publishing
138
104
139
105
``` shell
140
- yarn prepack && npm publish -- tag next
106
+ npm run release
141
107
```
0 commit comments