mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
8 lines
178 B
JavaScript
8 lines
178 B
JavaScript
'use strict';
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports = require('./index.production.js');
|
|
} else {
|
|
module.exports = require('./index.development.js');
|
|
}
|