mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-02 03:27:54 +00:00
Create KV V2 Ember Engine (#22426)
This commit is contained in:
22
ui/lib/kv/index.js
Normal file
22
ui/lib/kv/index.js
Normal file
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* Copyright (c) HashiCorp, Inc.
|
||||
* SPDX-License-Identifier: MPL-2.0
|
||||
*/
|
||||
|
||||
/* eslint-env node */
|
||||
/* eslint-disable n/no-extraneous-require */
|
||||
'use strict';
|
||||
|
||||
const { buildEngine } = require('ember-engines/lib/engine-addon');
|
||||
|
||||
module.exports = buildEngine({
|
||||
name: 'kv',
|
||||
|
||||
lazyLoading: {
|
||||
enabled: false,
|
||||
},
|
||||
|
||||
isDevelopingAddon() {
|
||||
return true;
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user