wisemapping-frontend/packages/web2d/webpack.common.js

19 lines
387 B
JavaScript
Raw Normal View History

/** @type {import('webpack').Configuration} */
2021-07-16 16:41:58 +02:00
const path = require('path');
const { merge } = require('webpack-merge');
const common = require('../../webpack.common');
2021-07-16 16:41:58 +02:00
const prodConfig = {
2021-10-05 02:05:34 +02:00
output: {
path: path.resolve(__dirname, 'dist'),
2021-12-18 23:55:01 +01:00
filename: 'web2d.js',
2021-10-05 02:05:34 +02:00
publicPath: '',
library: {
type: 'umd',
},
2023-01-30 05:10:57 +01:00
},
2021-07-16 16:41:58 +02:00
};
module.exports = merge(common, prodConfig);