fix: avoid loading analytics in localhost
This commit is contained in:
parent
453486761d
commit
672c34aa1a
7 changed files with 38 additions and 30 deletions
15
packages/helpers/setup.py
Normal file
15
packages/helpers/setup.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name="lektor-helpers",
|
||||
version="0.1",
|
||||
author="Felipe Martin",
|
||||
author_email="me@fmartingr.com",
|
||||
license="MIT",
|
||||
py_modules=["lektor_helpers"],
|
||||
entry_points={
|
||||
"lektor.plugins": [
|
||||
"helpers = lektor_helpers:HelpersPlugin",
|
||||
]
|
||||
},
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue