16 lines
418 B
JavaScript
16 lines
418 B
JavaScript
/** @type {import('pocketpages').PageDataLoaderFunc} */
|
|
|
|
|
|
/**
|
|
*
|
|
* This middleware populates pocketpages meta fields
|
|
*/
|
|
|
|
module.exports = function ({ meta, redirect, request, auth }) {
|
|
meta('title', 'Futureporn.net')
|
|
meta('description', 'Dedication to the preservation of Lewdtuber history')
|
|
meta('image', 'https://futureporn.net/assets/logo.png')
|
|
meta('version', require(`../../package.json`)?.version)
|
|
|
|
}
|