import{_ as s,o as a,c as n,V as l}from"./chunks/framework.b31a4d00.js";const u=JSON.parse('{"title":"静态资源","description":"","frontmatter":{},"headers":[],"relativePath":"guide/public.md"}'),o={name:"guide/public.md"},p=l(`
有些内容不需要经过 webpack
模块化处理,则可以将这些内容放在 public
文件夹,构建后会直接复制到 dist
目录,所以你需要通过BASE_URL
来引入它们。
在 index.html
中需要设置:
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
<template>
<img :src="\`\${publicPath}my-image.png\`" />
</template>
<script>
export default {
setup() {
return {
publicPath: process.env.BASE_URL,
};
},
};
</script>