Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
backfork-core / config / paths.js
Size: Mime:
const path = require('path')
const rootPath = path.resolve(process.cwd())
const buildPath = path.join(rootPath, 'build')
const publicBuildPath = path.join(buildPath, 'public')

module.exports = {
  rootPath,
  buildPath,
  publicBuildPath,
  publicSrcPath: path.join(rootPath, 'public'),
  serverSrcPath: path.join(rootPath, 'src'),
  serverBuildPath: buildPath,
  userNodeModulesPath: path.join(rootPath, 'node_modules'),
  publicPath: '/',
  serverUrl: 'http://localhost:3000'
}