上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 安装前提 Docker是基于linux的,在win10中安装wsl2:Windows Subsystem for Linux,让win10能够原生运行Linux二进制可执行文件的兼容层,且不会产生传统虚拟机或双启动设置开销。 总的来说类似安装一个 Windows 的子系统,在子系统里面运行 Linu 阅读全文
posted @ 2022-05-29 01:53 飞叶飞花 阅读(3440) 评论(0) 推荐(0) 编辑
摘要: Delete `␍` prettier/prettier 代码格式化不一致,换行符冲突。UNIX/Linux 使用的是 0x0A(LF), DOS/Windows 一直使用 0x0D0A(CRLF) 作为换行符,git 默认配置了 autocrlf 为true,默认所有代码都会被提交成了crlf,或 阅读全文
posted @ 2022-05-28 02:18 飞叶飞花 阅读(836) 评论(0) 推荐(0) 编辑
摘要: vite 打包开启 gzip 安装插件 npm i vite-plugin-compression --save-dev vite.config.js 配置 import { defineConfig } from "vite"; import vue from "@vitejs/plugin-vu 阅读全文
posted @ 2022-05-18 23:34 飞叶飞花 阅读(3420) 评论(0) 推荐(0) 编辑
摘要: 安装 deepin 深度linux系统 官网:https://www.deepin.org/zh/ 包含了下载ios镜像和安装教程: 最新版本:https://www.deepin.org/zh/download/ 页面上下载最新版IOS镜像和U盘启动盘制作工具。傻瓜式制作,简单。 所有版本:htt 阅读全文
posted @ 2022-05-07 18:34 飞叶飞花 阅读(799) 评论(0) 推荐(0) 编辑
摘要: ⼀个server块中配置多个站点 server { listen 80; server_name ~^(www.)?(.+)$; index index.php index.html; root /html/$2; } 站点的主⽬录结构: /html/domain.com/html/nginx.or 阅读全文
posted @ 2022-05-01 23:43 飞叶飞花 阅读(1280) 评论(0) 推荐(0) 编辑
摘要: Go安装 Go官网下载地址:https://golang.org/dl/ Go官方镜像站(推荐):https://golang.google.cn/dl/ Windows 选择Windows版本下载安装即可。 Linux 选择Linux版本下载 通过删除/usr/local/Go文件夹(如果存在)删 阅读全文
posted @ 2022-04-26 14:16 飞叶飞花 阅读(1480) 评论(0) 推荐(0) 编辑
摘要: 需求 有些程序依赖的Python版本不同,安装了Python2.7和Python3.10(3.x没有向下兼容),需要设置当前路径的 python 版本(指定使用2或3)。 也不止Python,类似的情景都是一样的。 解决方案 1.每次修改环境变量的顺序 安装时都有添加Python(不同的版本不同的路 阅读全文
posted @ 2022-02-27 18:39 飞叶飞花 阅读(1585) 评论(0) 推荐(0) 编辑
摘要: 执行旧版项目安装依赖时报错 卸载 npm uninstall node-sass sass-loader 安装(need Python27) npm install sass-loader@7.3.1 node-sass@4.13.0 或 npm install sass@1.26.5 ps:nod 阅读全文
posted @ 2022-02-01 23:29 飞叶飞花 阅读(4577) 评论(0) 推荐(0) 编辑
摘要: 官网下载地址 https://httpd.apache.org/ => https://httpd.apache.org/docs/current/platform/windows.html#down => https://www.apachelounge.com/download/#google_ 阅读全文
posted @ 2021-12-06 15:48 飞叶飞花 阅读(598) 评论(0) 推荐(0) 编辑
摘要: 本地域名不能访问原因是DNS地址问题,本地设置的DNS地址没法解析出腾讯云IP,所以域名访问不到,直接就用服务器IP却可以。 修改DNS可以在本地电脑上修改,只影响本机, 按下键盘上的“Windows+R”,调出运行面板,输入“cmd”,点击“确定” 输入“ipconfig/all”再按“回车键”, 阅读全文
posted @ 2021-12-04 14:49 飞叶飞花 阅读(1123) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页