mirror of
https://github.com/aelve/guide.git
synced 2024-11-23 21:13:07 +03:00
25 lines
514 B
JavaScript
25 lines
514 B
JavaScript
const path = require('path')
|
|
const moment = require('moment')
|
|
|
|
const appName = 'Aelve Guide'
|
|
const clientPort = 4000
|
|
const ssrPort = 5000
|
|
const distPath = rootResolve('./dist')
|
|
|
|
const env = {
|
|
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
|
|
'process.env.BUILD_TIME': JSON.stringify(moment(new Date()).format('YYYY-MM-DD HH:mm:ss'))
|
|
}
|
|
|
|
module.exports = {
|
|
appName,
|
|
env,
|
|
clientPort,
|
|
ssrPort,
|
|
distPath
|
|
}
|
|
|
|
function rootResolve (filePath) {
|
|
return path.resolve(__dirname, '../', filePath)
|
|
}
|