2021-12-25 14:39:47 +01:00
|
|
|
const path = require('path')
|
|
|
|
const defaultConfig = require('./default.config.js')
|
|
|
|
|
|
|
|
const build = {
|
2024-05-08 13:16:23 +02:00
|
|
|
options: {
|
|
|
|
outputDir: path.join(__dirname, '../build'),
|
|
|
|
imgDir: path.join(__dirname, '../img')
|
|
|
|
},
|
|
|
|
aliases: {
|
|
|
|
'qortal-ui-crypto': path.join(__dirname, '../crypto/api.js')
|
|
|
|
}
|
2021-12-25 14:39:47 +01:00
|
|
|
}
|
|
|
|
|
2024-05-08 13:16:23 +02:00
|
|
|
module.exports = build
|