mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
* 🔧 chore: Update build script to include post-build image removal
* refactor: staticCache middleware with options and special handling for manifest/sw/index files
* refactor(pwa): optimize service worker caching strategy
* refactor: streamline post-build process and update public directory handling
* chore: remove external images from rollupOptions in Vite config
* chore: enhance logging message in post-build script for clarity
50 lines
1.6 KiB
JavaScript
50 lines
1.6 KiB
JavaScript
const path = require('path');
|
|
const expressStaticGzip = require('express-static-gzip');
|
|
|
|
const oneDayInSeconds = 24 * 60 * 60;
|
|
|
|
const sMaxAge = process.env.STATIC_CACHE_S_MAX_AGE || oneDayInSeconds;
|
|
const maxAge = process.env.STATIC_CACHE_MAX_AGE || oneDayInSeconds * 2;
|
|
|
|
/**
|
|
* Creates an Express static middleware with gzip compression and configurable caching
|
|
*
|
|
* @param {string} staticPath - The file system path to serve static files from
|
|
* @param {Object} [options={}] - Configuration options
|
|
* @param {boolean} [options.noCache=false] - If true, disables caching entirely for all files
|
|
* @returns {ReturnType<expressStaticGzip>} Express middleware function for serving static files
|
|
*/
|
|
function staticCache(staticPath, options = {}) {
|
|
const { noCache = false } = options;
|
|
return expressStaticGzip(staticPath, {
|
|
enableBrotli: false,
|
|
orderPreference: ['gz'],
|
|
setHeaders: (res, filePath) => {
|
|
if (process.env.NODE_ENV?.toLowerCase() !== 'production') {
|
|
return;
|
|
}
|
|
if (noCache) {
|
|
res.setHeader('Cache-Control', 'no-store, no-cache, must-revalidate');
|
|
return;
|
|
}
|
|
if (filePath.includes('/dist/images/')) {
|
|
return;
|
|
}
|
|
const fileName = path.basename(filePath);
|
|
|
|
if (
|
|
fileName === 'index.html' ||
|
|
fileName.endsWith('.webmanifest') ||
|
|
fileName === 'manifest.json' ||
|
|
fileName === 'sw.js'
|
|
) {
|
|
res.setHeader('Cache-Control', 'no-store, no-cache, must-revalidate');
|
|
} else {
|
|
res.setHeader('Cache-Control', `public, max-age=${maxAge}, s-maxage=${sMaxAge}`);
|
|
}
|
|
},
|
|
index: false,
|
|
});
|
|
}
|
|
|
|
module.exports = staticCache;
|