chore: 项目文件归类整理

- assets/icons/ → 图标资源 (llama.ico, llama.png)
- css/ → 样式文件 (style.css)
- js/ → 所有业务代码
- js/lib/ → 第三方库 (marked.esm.js)
- js/components/ → UI 组件

修正所有 import 路径、HTML 引用、SW 缓存列表
This commit is contained in:
thzxx
2026-04-03 11:40:01 +08:00
parent 38edaee0f0
commit 41b512c779
13 changed files with 44 additions and 19 deletions
+4 -4
View File
@@ -7,10 +7,10 @@ const CACHE_NAME = 'metona-ollama-v3';
const ASSETS = [
'./',
'./index.html',
'./style.css',
'./chat-db.js',
'./marked.esm.js',
'./ollama-api.js',
'./css/style.css',
'./js/chat-db.js',
'./js/lib/marked.esm.js',
'./js/ollama-api.js',
'./manifest.json'
];