1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-19 02:41:44 +03:00
guide/front/server/ssr.config.js

15 lines
270 B
JavaScript

const { appName } = require('../build/build-config')
const moment = require('moment')
function templateEnvs () {
return {
title: appName,
isSSR: true,
renderTime: moment(new Date()).format('YYYY-MM-DD HH:mm:ss')
}
}
module.exports = {
templateEnvs
}