mirror of
https://github.com/System-End/cdn.git
synced 2026-04-19 19:45:07 +00:00
8 lines
No EOL
208 B
JavaScript
8 lines
No EOL
208 B
JavaScript
// Make the CDN URL
|
|
|
|
function generateFileUrl(userDir, uniqueFileName) {
|
|
const cdnUrl = process.env.AWS_CDN_URL;
|
|
return `${cdnUrl}/${userDir}/${uniqueFileName}`;
|
|
}
|
|
|
|
module.exports = {generateFileUrl}; |