返回 oh-my-ppt
index.html
根目录 / src / renderer / index.html
1 <!doctype html>
2 <html lang="zh-CN">
3 <head>
4 <meta charset="UTF-8" />
5 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 <title>OhMyPPT</title>
7 <meta
8 http-equiv="Content-Security-Policy"
9 content="default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; img-src 'self' data: local-asset: http: https:; media-src 'self' local-asset: http: https:; font-src 'self' local-asset:; frame-src 'self' local-asset:; connect-src 'self' https://api.anthropic.com https://api.openai.com https://api.deepseek.com"
10 />
11 </head>
12 <body>
13 <div id="root"></div>
14 <script type="module" src="/src/main.tsx"></script>
15 </body>
16 </html>
17
17 lines HTML