mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-09-12 19:50:57 +05:00
11 lines
240 B
Python
11 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()
|