mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-07 10:04:27 +00:00
10 lines
253 B
JavaScript
10 lines
253 B
JavaScript
require('babel-core/register');
|
|
|
|
/**
|
|
* Simple example on how environment variables can be used
|
|
*/
|
|
|
|
const config = require('./config/environment').default;
|
|
|
|
module.exports = require('./config/webpack/webpack.' + config.ENVIRONMENT_NAME + '.config');
|