mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-02-11 17:55:51 +00:00
14 lines
306 B
JavaScript
14 lines
306 B
JavaScript
const path = require('path')
|
|
const defaultConfig = require('./default.config.js')
|
|
|
|
const build = {
|
|
options: {
|
|
outputDir: path.join(__dirname, '../build'),
|
|
imgDir: path.join(__dirname, '../img')
|
|
},
|
|
aliases: {
|
|
'qortal-ui-crypto': path.join(__dirname, '../crypto/api.js')
|
|
}
|
|
}
|
|
|
|
module.exports = build |