Skip to content

geeeeeeeek/dev-tools

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

624 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

运行步骤

准备node环境

https://nodejs.org/zh-cn/download

安装pnpm

npm install pnpm -g

安装依赖

pnpm install

开发环境运行

pnpm dev

生产环境构建

pnpm build

nginx部署

server {
    listen 80;
    server_name localhost;
    root /usr/share/nginx/html;
    index index.html;

    location / {
        try_files $uri $uri/ /index.html;
    }
}

注意

浏览器调试的时候,可以关闭sw.js的注册

application--> service workers

视频教程

https://www.youtube.com/watch?v=L_sii6bwnEs

About

基于Vue搭建的在线开发者工具

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Vue 50.2%
  • TypeScript 47.7%
  • JavaScript 1.5%
  • Other 0.6%