ampache_react/index.js

11 lines
322 B
JavaScript
Raw Normal View History

/**
* This is the main JS entry point.
* It loads either the production or the development index file, based on the
* environment variables in use.
*/
2016-07-26 13:21:37 +02:00
if (process.env.NODE_ENV === "production") {
module.exports = require("./index.production.js");
} else {
module.exports = require("./index.development.js");
}