Changed default ip to 192.168.4.1

This commit is contained in:
Thomas Basler 2022-04-16 19:04:38 +02:00
parent 9e5906e5aa
commit 080471d801
2 changed files with 26 additions and 26 deletions

View File

@ -4,7 +4,7 @@
#include <WiFi.h>
WiFiSettingsClass::WiFiSettingsClass()
: apIp(172, 217, 28, 1)
: apIp(192, 168, 4, 1)
, apNetmask(255, 255, 255, 0)
{
dnsServer.reset(new DNSServer());

View File

@ -12,7 +12,7 @@ module.exports = defineConfig({
}
},
pluginOptions: {
compression:{
compression: {
gzip: {
filename: '[file].gz[query]',
algorithm: 'gzip',
@ -23,6 +23,6 @@ module.exports = defineConfig({
}
},
devServer: {
proxy: 'http://172.217.28.1/'
proxy: 'http://192.168.4.1/'
}
})