脑子备份:
脑子脑子 空哒空哒~
关于端口使用情况:
- 查看当前所有端口号的使用情况:
netstat -ano
- 查看指定端口号的使用情况:
netstat -aon|findstr "2080"
nginx相关:
- 杀死nginx所有进程:
taskkill /f /t /im nginx.exe
←简单粗暴 - 重启nginx:
nginx -s reload
- 配置代理:
server {
listen 8080;// 端口号
server_name 192.168.1.1;// ip
location / {
root html/dist;// dist包目录地址
index index.html index.htm;//设置入口文件
add_header Cache-Control no-store;// 设置请求头
}
location /Api/ {
proxy_pass https://192.168.1.1:9099/;// 需要代理的地址
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
- 项目build打包时配置
// 打包时使用
configureWebpack: () => {
return {
plugins: [
new UglifyJsPlugin({
uglifyOptions: {
compress: {
drop_console: true, // 注释console
drop_debugger: true, // 注释debugger
pure_funcs: ['console.log'], // 移除console.log
}
}
})
]
}
}