目前,我将
Vite
与 ReactJS
一起使用,并在我的代码中有以下两种类型的注释,例如:
export const Main = () => {
useEffect(() => {
// console.log("first type of comment.");
}, [])
return (
<>
{/* <div>Second type of comment.</div> */}
</>
);
}
如果我分别使用
vite
和 vite build
,这两种类型的注释在客户端浏览器中是否可见?
对于类似的问题,如何注释JSP表达式?谈论注释是否在客户端浏览器中可见,但它是针对
JSP
类型的注释。
这取决于构建过程。当您运行 prod 构建 - vite 构建时,它会启动缩小过程并删除两种风格的注释
//javascript comment
,和{/* <div>JSX comment</div> */}