Files
xahau.js/packages/xahau/webpack.base.config.js
Denis Angell 9544e1794e xahau-patch
2025-03-14 15:08:35 +01:00

15 lines
419 B
JavaScript

const path = require('path')
const webpack = require('webpack')
const { merge } = require('webpack-merge')
const { getDefaultConfiguration } = require('../../webpack.config')
module.exports = merge(getDefaultConfiguration(), {
entry: './dist/npm/index.js',
// overriding the output path and filename
output: {
library: 'xah',
path: path.join(__dirname, 'build/'),
filename: `xrpl.default.js`,
}
})