Files: 3582ba8ad59f6e36f60142e530d0794c1e02c095 / config / defaults.js
192 bytesRaw
1 | const { join } = require('path') |
2 | const env = process.env |
3 | const nodeEnv = env.NODE_ENV |
4 | |
5 | module.exports = { |
6 | static: { |
7 | root: join(__dirname, '..', 'assets') |
8 | }, |
9 | port: env.PORT || 5000 |
10 | } |
11 |
Built with git-ssb-web