website/src/config/asset.lisp
2024-04-22 21:54:17 +09:00

16 lines
356 B
Common Lisp

(defpackage #:hp/config/asset
(:use #:cl)
(:export #:*asset-roots*
#:*hx-ext*))
(in-package #:hp/config/asset)
(defparameter *asset-roots*
'(:img "/img/"
:css "/css/"
:js "/js/"
:vendor "/vendor/"
:htmx-ext "/vendor/htmx-ext/"
:alpine-ext "/vendor/alpine-ext/"))
(defparameter *hx-ext*
"head-support,alpine-morph")