mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-22 21:58:02 +00:00
17 lines
391 B
JavaScript
17 lines
391 B
JavaScript
// Copyright 2017-2021 @polkadot/ui authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
const base = require('@polkadot/dev/config/babel-config-cjs.cjs');
|
|
|
|
module.exports = Object.keys(base).reduce((config, key) => {
|
|
config[key] = base[key];
|
|
|
|
if (key === 'plugins') {
|
|
config[key] = config[key].concat([
|
|
'transform-vue-template'
|
|
]);
|
|
}
|
|
|
|
return config;
|
|
}, {});
|