mirror of
https://github.com/transmission/transmission
synced 2024-12-26 01:27:28 +00:00
5b14df51cb
revert to older transmission-web build dependencies to make it easier to build on stock older systems, e.g. Ubuntu 20.04 which ships with Node 10.
73 lines
1.7 KiB
JavaScript
73 lines
1.7 KiB
JavaScript
const path = require('path');
|
|
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
|
|
const TerserPlugin = require('terser-webpack-plugin');
|
|
const webpack = require('webpack');
|
|
|
|
const mode = process.env.WEBPACK_MODE || 'production';
|
|
const devPort = process.env.DEV_PORT || 9000;
|
|
const rpcUrl = process.env.RPC_URL || 'http://localhost:9091/transmission/rpc';
|
|
|
|
const config = {
|
|
devtool: 'source-map',
|
|
entry: './src/main.js',
|
|
mode,
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.s(a|c)ss$/,
|
|
use: [
|
|
'style-loader', // create 'style' nodes from JS strings
|
|
'css-loader', // translate css into commonjs
|
|
'sass-loader', // compile sass into css
|
|
],
|
|
},
|
|
{
|
|
test: /\.css$/i,
|
|
use: ['style-loader', 'css-loader'],
|
|
},
|
|
{
|
|
test: /\.(png|svg)/,
|
|
type: 'asset/inline',
|
|
},
|
|
],
|
|
},
|
|
optimization: {
|
|
minimizer: [new TerserPlugin(), new CssMinimizerPlugin()],
|
|
},
|
|
output: {
|
|
filename: 'transmission-app.js',
|
|
path: path.resolve(__dirname, 'public_html'),
|
|
sourceMapFilename: '[file].map',
|
|
},
|
|
plugins: [
|
|
new MiniCssExtractPlugin({
|
|
chunkFilename: '[id].css',
|
|
filename: '[name].css',
|
|
}),
|
|
new webpack.optimize.LimitChunkCountPlugin({
|
|
maxChunks: 1,
|
|
}),
|
|
],
|
|
resolve: {
|
|
extensions: ['.js', '.scss'],
|
|
},
|
|
};
|
|
|
|
if (mode === 'development') {
|
|
config.devServer = {
|
|
compress: true,
|
|
historyApiFallback: {
|
|
rewrites: [{ from: '/transmission/web', to: '/' }],
|
|
},
|
|
hot: true,
|
|
port: devPort,
|
|
proxy: {
|
|
'/rpc': rpcUrl,
|
|
},
|
|
static: './public_html',
|
|
};
|
|
}
|
|
|
|
module.exports = config;
|