mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 10:50:37 -06:00
b09b49fb37
* Initial commit * Chore: fixes after merge * Chore: removes todos * Chore: uncomment test * Chore: adds missing externals to rollup config * Refactor: selectors is master for everything * Docs: updates Docs * Chore: adds e2e-selectors to publish
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');
|
|
}
|