Merge pull request #213 from fukayatsu/fukayatsu-patch-1

This commit is contained in:
Kyle McNally 2024-01-29 10:23:37 -05:00 committed by GitHub
commit 29004cbb13
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -232,10 +232,10 @@ This method should be invoked _before_ launching Chromium.
Alternatively, it's also possible to provision fonts via AWS Lambda Layers. Alternatively, it's also possible to provision fonts via AWS Lambda Layers.
Simply create a directory named `.fonts` and place any font faces you want there: Simply create a directory named `fonts` and place any font faces you want there:
``` ```
.fonts fonts
├── NotoColorEmoji.ttf ├── NotoColorEmoji.ttf
└── Roboto.ttf └── Roboto.ttf
``` ```
@ -243,7 +243,7 @@ Simply create a directory named `.fonts` and place any font faces you want there
Afterwards, you just need to ZIP the directory and upload it as a AWS Lambda Layer: Afterwards, you just need to ZIP the directory and upload it as a AWS Lambda Layer:
```shell ```shell
zip -9 --filesync --move --recurse-paths .fonts.zip .fonts/ zip -9 --filesync --move --recurse-paths fonts.zip fonts/
``` ```
## Graphics ## Graphics