This commit is contained in:
Arnold Dechamps 2024-03-26 07:39:17 +01:00
parent 5768719569
commit 5e5d1015b6
No known key found for this signature in database
GPG key ID: AE66543374E41C89
3 changed files with 1387 additions and 2 deletions

1376
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

5
package.json Normal file
View file

@ -0,0 +1,5 @@
{
"devDependencies": {
"tailwindcss": "^3.4.1"
}
}

View file

@ -121,8 +121,12 @@ USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/3.1/howto/static-files/
STATIC_URL = 'static/'
STATIC_ROOT = 'staticfiles'
STATIC_URL = 'https://static.tldtest.net/'
STATIC_ROOT = BASE_DIR / "staticfiles"
STATICFILES_DIRS = [
BASE_DIR / "static",
]
COMPRESS_ROOT = BASE_DIR / 'static'