Changed default ip to 192.168.4.1
This commit is contained in:
parent
9e5906e5aa
commit
080471d801
@ -4,7 +4,7 @@
|
|||||||
#include <WiFi.h>
|
#include <WiFi.h>
|
||||||
|
|
||||||
WiFiSettingsClass::WiFiSettingsClass()
|
WiFiSettingsClass::WiFiSettingsClass()
|
||||||
: apIp(172, 217, 28, 1)
|
: apIp(192, 168, 4, 1)
|
||||||
, apNetmask(255, 255, 255, 0)
|
, apNetmask(255, 255, 255, 0)
|
||||||
{
|
{
|
||||||
dnsServer.reset(new DNSServer());
|
dnsServer.reset(new DNSServer());
|
||||||
|
|||||||
@ -1,28 +1,28 @@
|
|||||||
const { defineConfig } = require('@vue/cli-service')
|
const { defineConfig } = require('@vue/cli-service')
|
||||||
module.exports = defineConfig({
|
module.exports = defineConfig({
|
||||||
transpileDependencies: true,
|
transpileDependencies: true,
|
||||||
productionSourceMap: false,
|
productionSourceMap: false,
|
||||||
outputDir: '../data',
|
outputDir: '../data',
|
||||||
css: {
|
css: {
|
||||||
extract: false,
|
extract: false,
|
||||||
},
|
},
|
||||||
configureWebpack: {
|
configureWebpack: {
|
||||||
optimization: {
|
optimization: {
|
||||||
splitChunks: false
|
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/'
|
|
||||||
}
|
|
||||||
})
|
|
||||||
Loading…
Reference in New Issue
Block a user