Changed default ip to 192.168.4.1
This commit is contained in:
parent
9e5906e5aa
commit
080471d801
@ -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());
|
||||
|
||||
@ -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/'
|
||||
}
|
||||
})
|
||||
})
|
||||
Loading…
Reference in New Issue
Block a user