Public 对比 src 目录 (vue-cli)
Public vs src directories (vue-cli)
使用vue-cli时的默认目录结构包含一个'public'目录和'src'目录。 public 目录包含 index.html。将 index.html 放在 public 目录而不是 src 中的目的到底是什么? public 中还有哪些其他文件示例?
放在public文件夹中的文件是静态的,不会被webpack处理。
"Placed in the public directory and referenced via absolute paths. These assets will simply be copied and not go through webpack"
来源:https://cli.vuejs.org/guide/html-and-static-assets.html#static-assets-handling
示例可能包括:Favicon、PWA 图标、robots.txt、manifest.json...仅举几例。
使用vue-cli时的默认目录结构包含一个'public'目录和'src'目录。 public 目录包含 index.html。将 index.html 放在 public 目录而不是 src 中的目的到底是什么? public 中还有哪些其他文件示例?
放在public文件夹中的文件是静态的,不会被webpack处理。
"Placed in the public directory and referenced via absolute paths. These assets will simply be copied and not go through webpack"
来源:https://cli.vuejs.org/guide/html-and-static-assets.html#static-assets-handling
示例可能包括:Favicon、PWA 图标、robots.txt、manifest.json...仅举几例。