blob: 4234ff93c41722608c59307ad4108b5d5a81c2f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Disable Image to Base64 Conversion
Some users[^1] may wish to host their imagery and media via a 3rd party source or simply want to avoid the heavy weight added with using base64 strings (~133%+ in size).
To disable this feature, open your `_phpetite/_config.php` file and change the `images_to_base64` variable to false.
```.php
// Activate or disable images to base64 strings
$images_to_base64 = false;
```
[^1]: Thanks to [Minor49er](https://news.ycombinator.com/user?id=Minor49er) for suggesting this option on [Hacker News](https://news.ycombinator.com/item?id=26175904)
|