diff --git a/debian/control b/debian/control index fc16f79..8def355 100644 --- a/debian/control +++ b/debian/control @@ -8,7 +8,7 @@ Build-Depends: dh-python, python3-all, python3-django (>= 2.2), -# python3-djangorestframework, + python3-djangorestframework, # python3-djoser (>= 2.1), python3-setuptools, Standards-Version: 4.5.0 @@ -31,6 +31,6 @@ Depends: ${python3:Depends}, python3-django (>= 2.2), python3-django-imagekit, -# python3-djangorestframework, -# python3-djoser (>= 2.1), + python3-djangorestframework, + python3-djoser (>= 2.1), Description: Python backend for the userausfall web application diff --git a/setup.py b/setup.py index 0a4e9fc..3b120dd 100644 --- a/setup.py +++ b/setup.py @@ -12,8 +12,8 @@ setup( packages=find_packages(), install_requires=( "django>=2.2<3.0", - # "djangorestframework>=3.12<4.0", - # "djoser>=2.1<3.0", + "djangorestframework>=3.12<4.0", + "djoser>=2.1<3.0", ), include_package_data=True, ) diff --git a/vue.config.js b/vue.config.js index f5887ee..8d24cc8 100644 --- a/vue.config.js +++ b/vue.config.js @@ -10,9 +10,4 @@ module.exports = { }, }, }, - pwa: { - workboxOptions: { - importWorkboxFrom: "disabled", - }, - }, };