Files
xahau.js/packages/xahau/webpack.base.config.js
Denis Angell 69e8b786ed xahau-patch
2025-03-14 16:50:42 +01:00

15 lines
423 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: 'xahau',
path: path.join(__dirname, 'build/'),
filename: `xahau.default.js`,
},
})