码迷,mamicode.com
首页 >  
搜索关键字:global build    ( 22928个结果
正则表达式测试
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <title>正则表达式测试</title> <link rel="stylesheet" href="b ...
分类:其他好文   时间:2021-02-20 12:01:53    阅读次数:0
记录一下vue-cli3搭建项目后遇到axios请求跨域的问题
只记录一种最简便的方法,在项目根目录下创建vue.config.js,修改module配置: 1 module.exports = { 2 outputDir: 'dist', //build输出目录 3 assetsDir: 'assets', //静态资源目录(js, css, img) 4 l ...
分类:移动开发   时间:2021-02-19 13:44:35    阅读次数:0
Kubernetes和docker----1.开始使用k8s和docker
开始使用Kubernetes和docker docker命令 运行一个容器 docker run busybox echo "Hello world" 构建容器镜像 docker build -t imageName . # docker bulid -t <imageName> <Dockerfi ...
分类:Web程序   时间:2021-02-19 13:44:05    阅读次数:0
SQL注入-读文件和写文件
1.设置权限 show global variables like "secure_file_priv"//不为NULL 如果显示为NULL,在my.ini中添加secure_file_priv= //不加任何值 2.写文件 写在的磁盘根目录D盘 写在了D:\phpStudy\MySQL\data ...
分类:数据库   时间:2021-02-19 13:11:02    阅读次数:0
Python-pip源设置
1、windows10 pip设置目录:C:\ProgramData\pip\pip.ini [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple/ ←--清华大学源 2、dos命令:pip config --global set ...
分类:编程语言   时间:2021-02-19 13:05:20    阅读次数:0
String类的常用方法
一、String类的常用方法 返回当前字符串中给定位置的字符: char charAt(int index) 返回给定字符串在当前字符串中的位置: int indexOf(String str) 返回当前字符串的长度: int length() 判断当前字符串是以指定字符开始或结束的: boolea ...
分类:其他好文   时间:2021-02-18 13:42:38    阅读次数:0
树套树(splay套线段树) -AcWing 2476
树套树(splay套线段树) -AcWing 2476 本来想着用multiset套线段树的,结果一直T。改成常数小的splay才过,写完人都傻了^^ /* splay套线段树 */ #include <bits/stdc++.h> using namespace std; const int N ...
分类:Windows程序   时间:2021-02-18 13:37:49    阅读次数:0
vue3修改端口
第一步找到package.json文件 dev修改为: "dev": "vite --port 8085" { "name": "web", "version": "0.0.0", "scripts": { "dev": "vite --port 8085", "build": "vite buil ...
分类:其他好文   时间:2021-02-18 13:10:54    阅读次数:0
(node:18692) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 2): TypeError: Object.entries is not a function 的解决方法
在 Vue.JS 项目中执行 npm run build 没想到出现了这个错误 (node:18692) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 2): TypeError: Objec ...
分类:其他好文   时间:2021-02-18 13:05:49    阅读次数:0
对于maven中无法加载类路径下的配置文件
<build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includ ...
分类:其他好文   时间:2021-02-18 13:03:49    阅读次数:0
22928条   上一页 1 ... 26 27 28 29 30 ... 2293 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!