trailsjs/trails

View on GitHub
archetype/config/main.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Main App Configuration
 * (app.config.main)
 *
 * @see {@link http://trailsjs.io/doc/config/main}
 */

const path = require('path')

module.exports = {

  /**
   * Order does *not* matter. Each module is loaded according to its own
   * requirements.
   */
  packs: [
  ],

  /**
   * Define application paths here. "root" is the only required path.
   */
  paths: {
    root: path.resolve(__dirname, '..'),
    temp: path.resolve(__dirname, '..', '.tmp')
  }
}