File tree Expand file tree Collapse file tree 2 files changed +22
-5
lines changed Expand file tree Collapse file tree 2 files changed +22
-5
lines changed Original file line number Diff line number Diff line change 31
31
*/
32
32
'renderers ' => [
33
33
34
- 'prerender ' => [
35
- 'url ' => env ('PRERENDER_URL ' , 'http://localhost:3000 ' ),
36
- ],
37
-
38
34
'rendertron ' => [
39
35
'url ' => env ('RENDERTRON_URL ' , 'http://localhost:3000 ' ),
40
36
],
41
37
38
+ 'prerender ' => [
39
+ 'url ' => env ('PRERENDER_URL ' , 'http://localhost:3000 ' ),
40
+ ],
41
+
42
42
],
43
43
44
44
];
Original file line number Diff line number Diff line change @@ -25,5 +25,22 @@ After the installation you need to choose and setup the renderer.
25
25
26
26
These ones are shipped out of the box:
27
27
28
- - [ Prerender] ( {{base}}/{{version}}/prerender )
29
28
- [ Rendertron] ( {{base}}/{{version}}/rendertron )
29
+ - [ Prerender] ( {{base}}/{{version}}/prerender )
30
+
31
+ ## Installing the Chrome
32
+
33
+ This step might not be required because:
34
+ - some renderers install the Chrome themselves (e.g. Rendertron)
35
+ - Chrome might already be installed in your system
36
+
37
+ But if it is not your case, the instructions are given below.
38
+
39
+ ### Installing the Chrome on Ubuntu
40
+
41
+ ``` bash
42
+ wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
43
+ sudo sh -c ' echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
44
+ sudo apt update
45
+ sudo apt install google-chrome-stable
46
+ ```
You can’t perform that action at this time.
0 commit comments