PlantCtrl/rust/src_webpack/webpack.config.js

54 lines
1.0 KiB
JavaScript
Raw Normal View History

2024-12-04 21:38:21 +01:00
const webpack = require('webpack');
const CopyPlugin = require("copy-webpack-plugin");
const path = require('path');
2024-12-04 21:38:21 +01:00
const isDevServer = process.env.WEBPACK_SERVE;
console.log("Dev server is " + isDevServer);
var host;
if (isDevServer){
host = 'http://10.23.43.24';
} else {
host = '';
}
module.exports = {
mode: "development",
entry: ['./src/form.ts','./src/ota.ts', "./src/battery.ts"],
devtool: 'inline-source-map',
2024-12-04 21:38:21 +01:00
plugins: [
new CopyPlugin({
patterns: [
{
from: "src/index.html",
to: "index.html"
}
]
}),
new webpack.DefinePlugin({
PUBLIC_URL: JSON.stringify(host),
}),
new webpack.EnvironmentPlugin({
redirect: 'true'
})
],
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
]
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, '../src/webserver'),
},
2024-12-04 21:38:21 +01:00
devServer: {
}
};