mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-20 20:25:48 +00:00
xahau-patch
This commit is contained in:
14
packages/xahau/webpack.base.config.js
Normal file
14
packages/xahau/webpack.base.config.js
Normal file
@@ -0,0 +1,14 @@
|
||||
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`,
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user