mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
8 lines
177 B
JavaScript
8 lines
177 B
JavaScript
|
'use strict'
|
||
|
|
||
|
if (process.env.NODE_ENV === 'production') {
|
||
|
module.exports = require('./index.production.js');
|
||
|
} else {
|
||
|
module.exports = require('./index.development.js');
|
||
|
}
|