mirror of
https://github.com/NoCrypt/migu.git
synced 2026-01-11 20:10:22 +00:00
54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
const commonConfig = require('common/webpack.config.cjs')
|
|
const { merge } = require('webpack-merge')
|
|
const { join, resolve } = require('path')
|
|
const CopyWebpackPlugin = require('copy-webpack-plugin')
|
|
|
|
const mode = process.env.NODE_ENV?.trim() || 'development'
|
|
|
|
/** @type {import('webpack').Configuration} */
|
|
const capacitorConfig = {
|
|
devtool: 'source-map',
|
|
entry: [join(__dirname, 'src', 'main.js')],
|
|
output: {
|
|
path: join(__dirname, 'build', 'nodejs'),
|
|
filename: 'index.js'
|
|
},
|
|
mode,
|
|
externals: {
|
|
'utp-native': 'require("utp-native")',
|
|
bridge: 'require("bridge")'
|
|
},
|
|
resolve: {
|
|
aliasFields: [],
|
|
mainFields: ['module', 'main', 'node'],
|
|
alias: {
|
|
wrtc: false,
|
|
'bittorrent-tracker/lib/client/http-tracker.js': resolve('../node_modules/bittorrent-tracker/lib/client/http-tracker.js')
|
|
}
|
|
},
|
|
target: 'node',
|
|
devServer: {
|
|
devMiddleware: {
|
|
writeToDisk: true
|
|
},
|
|
hot: true,
|
|
client: {
|
|
overlay: { errors: true, warnings: false, runtimeErrors: false }
|
|
},
|
|
port: 5000
|
|
},
|
|
plugins: [
|
|
new CopyWebpackPlugin({
|
|
patterns: [
|
|
{ from: join(__dirname, 'public', 'nodejs') }
|
|
]
|
|
}),
|
|
]
|
|
}
|
|
|
|
const alias = {
|
|
'@/modules/ipc.js': join(__dirname, 'src', 'ipc.js'),
|
|
'@/modules/support.js': join(__dirname, 'src', 'support.js')
|
|
}
|
|
|
|
module.exports = [capacitorConfig, merge(commonConfig(__dirname, alias, 'browser', 'index'), { entry: [join(__dirname, 'src', 'capacitor.js')] })]
|