diff --git a/src/WiFiSettings.cpp b/src/WiFiSettings.cpp index 7a7934fe..d736e997 100644 --- a/src/WiFiSettings.cpp +++ b/src/WiFiSettings.cpp @@ -4,7 +4,7 @@ #include WiFiSettingsClass::WiFiSettingsClass() - : apIp(172, 217, 28, 1) + : apIp(192, 168, 4, 1) , apNetmask(255, 255, 255, 0) { dnsServer.reset(new DNSServer()); diff --git a/webapp/vue.config.js b/webapp/vue.config.js index b534aef8..955a13c6 100644 --- a/webapp/vue.config.js +++ b/webapp/vue.config.js @@ -1,28 +1,28 @@ const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ - transpileDependencies: true, - productionSourceMap: false, - outputDir: '../data', - css: { - extract: false, - }, - configureWebpack: { - optimization: { - splitChunks: false + transpileDependencies: true, + productionSourceMap: false, + outputDir: '../data', + css: { + extract: false, + }, + configureWebpack: { + optimization: { + splitChunks: false + } + }, + pluginOptions: { + compression: { + gzip: { + filename: '[file].gz[query]', + algorithm: 'gzip', + include: /\.(js|css|html|svg|json)(\?.*)?$/i, + deleteOriginalAssets: true, + minRatio: 0.8, + } + } + }, + devServer: { + proxy: 'http://192.168.4.1/' } - }, - pluginOptions: { - compression:{ - gzip: { - filename: '[file].gz[query]', - algorithm: 'gzip', - include: /\.(js|css|html|svg|json)(\?.*)?$/i, - deleteOriginalAssets: true, - minRatio: 0.8, - } - } - }, - devServer: { - proxy: 'http://172.217.28.1/' - } -}) +}) \ No newline at end of file