mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-22 21:58:02 +00:00
11 lines
327 B
JavaScript
11 lines
327 B
JavaScript
// Copyright 2017-2020 @polkadot/ui authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
const path = require('path');
|
|
|
|
module.exports = function resolver (file, config) {
|
|
return file.includes('package.json')
|
|
? path.join(config.basedir.replace('/src', '/'), file)
|
|
: config.defaultResolver(file, config);
|
|
};
|