mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
401615847c
first step in moving non-ui components to their own package
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');
|
|
}
|