mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-03 03:58:01 +00:00
12 lines
275 B
JavaScript
12 lines
275 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { helper } from '@ember/component/helper';
|
|
import ENV from 'vault/config/environment';
|
|
|
|
export default helper(function ([path]) {
|
|
return path.replace(/^~\//, `${ENV.rootURL}images/`);
|
|
});
|