mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -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');
|
|
}
|