mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-22 14:22:33 +01:00
14 lines
455 B
JavaScript
14 lines
455 B
JavaScript
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
|
|
const merge = require('webpack-merge');
|
|
const nodeExternals = require('webpack-node-externals');
|
|
const path = require('path');
|
|
|
|
const common = require('./webpack.common.js');
|
|
|
|
module.exports = merge(common, {
|
|
devtool: 'source-map',
|
|
entry: [path.join(__dirname, 'src/main.ts')],
|
|
externals: [nodeExternals({})],
|
|
mode: 'production',
|
|
plugins: [new CleanWebpackPlugin()],
|
|
});
|