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

15 lines
326 B
JavaScript
Raw Normal View History

/** @type {import('webpack').Configuration} */
2021-07-16 11:41:58 -03:00
const path = require('path');
const { merge } = require('webpack-merge');
const common = require('../../webpack.common');
2021-07-16 11:41:58 -03:00
const prodConfig = {
2021-10-04 17:05:34 -07:00
output: {
path: path.resolve(__dirname, 'dist'),
2023-02-10 02:51:52 +00:00
filename: 'index.ts',
2023-01-30 04:10:57 +00:00
},
2021-07-16 11:41:58 -03:00
};
module.exports = merge(common, prodConfig);