找到iconfont.css font-face url前添加
~@/static/iconfont/
栗子
/iconfont.eot
变成
~@/static/iconfont/iconfont.eot
转载请注明:有爱前端 » unia...
蚂蚁
4年前 (2020-11-13)
1528℃
0评论
1喜欢
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewpo...
蚂蚁
4年前 (2020-10-27)
2173℃
0评论
3喜欢
转自:https://zhuanlan.zhihu.com/p/141031060
数组 Array
数组去重
function noRepeat(arr) {
return [...new Set(arr)];
}
查找数组最大
function arrayM...
蚂蚁
4年前 (2020-10-16)
1182℃
0评论
2喜欢
<?php
function consoleLog($val){
$debug = debug_backtrace();
...
蚂蚁
4年前 (2020-07-25)
1529℃
0评论
41喜欢
开启服务
@echo off
set PHP_FCGI_MAX_REQUESTS = 1000
echo Starting PHP FastCGI...
rem 下面这里的分别替换成你的php-cgi.exe和php.ini的路径 ,后面的-b,-c等参数必...
蚂蚁
4年前 (2020-07-23)
1801℃
0评论
2喜欢
准备更新群晖的时候出现 记群晖显示系统空间不足
群晖默认2G系统空间
1.使用
du -sh /*
指令查看根目录(根目录就是系统目录)下的各个一级文件夹大小,找到占用过高的文件夹,(我的是把GCC安装进来了)
2.
du -h -d1
查看本级目录占用空间 一层层...
蚂蚁
5年前 (2020-07-03)
4441℃
0评论
91喜欢
先做一个mongo容器
docker run --name bookback \
-p 27018:27017 \
--mount type=bind,src=/docker/mongo/conf,dst=/data/configdb \
--mount type=bind,s...
蚂蚁
5年前 (2020-06-08)
1871℃
0评论
34喜欢
仿抖音罗盘时钟
<!DOCTYPE html>
<html>
<head>
<!-- http://www.jq22.com/jquery-info22916 -->
<!-- ht...
蚂蚁
5年前 (2020-05-07)
1977℃
0评论
44喜欢
nginx静态文件(css,js等)反向代理
https://www.qzroc.com/index.php/archives/78/
场景如下:
微信或者第三方登录回调地址,有#号时,接收不到code参数,或者处理起来非常复杂
微信H5支付的回调地址,不允许有#
App分享,...
蚂蚁
5年前 (2020-04-27)
5469℃
1评论
62喜欢
https://blog.csdn.net/wss794/article/details/83342404
原始:
import os
from PIL import Image
def save_resize_img(img_path, img_path_train, wi...
蚂蚁
5年前 (2019-12-05)
3797℃
0评论
112喜欢