mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-12-27 15:54:50 +00:00
18 lines
333 B
JavaScript
18 lines
333 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
/* eslint-disable node/no-extraneous-require */
|
|
const { buildEngine } = require('ember-engines/lib/engine-addon');
|
|
|
|
module.exports = buildEngine({
|
|
name: 'pki',
|
|
lazyLoading: {
|
|
enabled: false,
|
|
},
|
|
isDevelopingAddon() {
|
|
return true;
|
|
},
|
|
});
|