We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
name
1 parent 9f662e9 commit 89dfc39Copy full SHA for 89dfc39
Makefile
@@ -60,6 +60,7 @@ all: lint test build
60
--use postcss-cachify \
61
--postcss-cachify.baseUrl /stylesheets \
62
--postcss-cachify.basePath public \
63
+ --postcss-cachify.format name \
64
--output $@ $@
65
66
%.min.css: %.css
app.js
@@ -20,7 +20,7 @@ process.env.NODE_ENV ??= 'development';
20
const root = path.join(__dirname, 'public');
21
const { SITE_URL: siteUrl, LIFTIE_STATIC_HOST: staticHost = '' } = process.env;
22
23
-const cachify = cachifyStatic(root);
+const cachify = cachifyStatic(root, { format: 'name' });
24
25
app.locals = {
26
min: '.min',
0 commit comments