From 4d4a8774c15816816d799101e93d6e3fc1d7ddc9 Mon Sep 17 00:00:00 2001 From: wanganxp Date: Fri, 15 Dec 2023 15:56:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E7=BC=96=E8=AF=91=E5=99=A8?= =?UTF-8?q?=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/compiler/README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/compiler/README.md b/docs/compiler/README.md index e7971833..16e4b8dc 100644 --- a/docs/compiler/README.md +++ b/docs/compiler/README.md @@ -109,9 +109,12 @@ App原生语言的编译过程耗时较长,因此编译器引入了缓存机 ├─static 本地静态资源(如图片、字体、音视频等文件)的目录 | └─3.png └─uni_modules - └─static uni_modules下的本地静态资源(如图片、字体、音视频等文件)的目录 + ├─hybrid uni_modules下的web-view加载的本地html文件的目录 + └─static uni_modules下的本地静态资源(如图片、字体、音视频等文件)的目录 -uts、css等代码文件不是静态资源,它们会被编译为新的代码格式(如Android上会被编译为kt)。 +**注意** +- `uni_modules`下的非static资源引用,也是编译到根目录的assets下,不会编译到`uni_modules`中 +- uts、css等代码文件不是静态资源,它们会被编译为新的代码格式(如Android上会被编译为kt)。 请不要把这些文件放到static目录中,因为会导致代码里已经编进去了,又copy了一份相同文件到发行包中,重复增加了包体积。 \ No newline at end of file -- GitLab