707d065edb
- AiAssistant 改为右侧粘性面板,按文本处理/翻译/智能生成分组 - 支持选中文本局部处理(未选中时处理全文) - 替换/追加内容后支持撤销恢复 - 新增「生成标题」「生成摘要」按钮,结果可一键填入表单 - 编辑器最小高度从 300px 提高到 500px - admin layout 去除 max-w-5xl 限制,充分利用宽屏空间 - 添加 .env.example 模板,.gitignore 放行 - package.json 添加 @tailwindcss/oxide-win32-x64-msvc optionalDependencies(兼容 Windows)
49 lines
585 B
Plaintext
49 lines
585 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
/node_modules
|
|
/.pnp
|
|
.pnp.*
|
|
.yarn/*
|
|
!.yarn/patches
|
|
!.yarn/plugins
|
|
!.yarn/releases
|
|
!.yarn/versions
|
|
|
|
# testing
|
|
/coverage
|
|
|
|
# next.js
|
|
/.next/
|
|
/out/
|
|
|
|
# production
|
|
/build
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# prisma database
|
|
prisma/dev.db
|
|
prisma/dev.db-journal
|
|
prisma/dev.db-wal
|
|
prisma/dev.db-shm
|
|
|
|
# env files (can opt-in for committing if needed)
|
|
.env*
|
|
!.env.example
|
|
|
|
# vercel
|
|
.vercel
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|