mirror of https://github.com/rancher/ui.git
20 lines
374 B
JavaScript
20 lines
374 B
JavaScript
/* eslint-disable */
|
|
const webpack = require('webpack');
|
|
|
|
'use strict';
|
|
|
|
const EngineAddon = require('ember-engines/lib/engine-addon');
|
|
|
|
module.exports = EngineAddon.extend({
|
|
name: 'monitoring',
|
|
|
|
lazyLoading: { enabled: true },
|
|
|
|
isDevelopingAddon() {
|
|
return true;
|
|
},
|
|
options: {
|
|
babel: { plugins: [require('ember-auto-import/babel-plugin')] }
|
|
}
|
|
});
|