mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-30 18:17:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			332 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			332 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * Copyright (c) HashiCorp, Inc.
 | |
|  * SPDX-License-Identifier: MPL-2.0
 | |
|  */
 | |
| 
 | |
| /* 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;
 | |
|   },
 | |
| });
 | 
