16 lines
356 B
Common Lisp
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")
|