Compare Changes at consolidate

This commit is contained in:
2026-02-26 16:18:45 +01:00
parent c8309832f7
commit 6190d707bb
8 changed files with 214 additions and 56 deletions

View File

@@ -5,7 +5,7 @@ const CopyWebpackPlugin = require("copy-webpack-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const webpack = require("webpack");
const urlDev = "https://localhost:3037/";
const urlDev = "https://localhost:3000/";
const urlProd = "https://kabel.casademm.de/"; // CHANGE THIS TO YOUR PRODUCTION DEPLOYMENT LOCATION
async function getHttpsOptions() {
@@ -93,6 +93,9 @@ module.exports = async (env, options) => {
new webpack.ProvidePlugin({
Promise: ["es6-promise", "Promise"],
}),
new webpack.DefinePlugin({
DEV_MODE: JSON.stringify(dev),
}),
],
devServer: {
hot: true,