mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-28 05:34:14 -04:00
10 lines
240 B
Python
10 lines
240 B
Python
from abx_spec_config.base_configset import BaseConfigSet
|
|
|
|
|
|
class FaviconConfig(BaseConfigSet):
|
|
SAVE_FAVICON: bool = True
|
|
|
|
FAVICON_PROVIDER: str = 'https://www.google.com/s2/favicons?domain={}'
|
|
|
|
|
|
FAVICON_CONFIG = FaviconConfig()
|