添加三个EdgeOne函数示例: 1. helloworld-cloud - 基础云函数示例 2. helloworld-edge - 返回JSON的Edge函数示例 3. random-acg - 带错误处理的图片代理函数 更新.gitignore以排除EdgeOne相关文件和目录
39 lines
390 B
Plaintext
39 lines
390 B
Plaintext
# build output
|
|
dist/
|
|
|
|
# generated types
|
|
.astro/
|
|
|
|
# dependencies
|
|
node_modules/
|
|
|
|
# logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# environment variables
|
|
.env
|
|
.env.production
|
|
|
|
# macOS-specific files
|
|
.DS_Store
|
|
|
|
.vercel
|
|
|
|
package-lock.json
|
|
bun.lockb
|
|
yarn.lock
|
|
|
|
.vscode
|
|
|
|
# 忽略上游仓库
|
|
ori
|
|
|
|
# Tencent Cloud EdgeOne
|
|
.env
|
|
.edgeone/*
|
|
!.edgeone/project.json
|
|
.tef_dist/*
|
|
|