ythy / blog

Give everything a shot
6 stars 0 forks source link

Webpack - EJS正确用法 #402

Open ythy opened 3 years ago

ythy commented 3 years ago

依赖

new HtmlWebpackPlugin({ title: "hello world", minify: false, filename: "world.jsp", template: "./src/templates/hello_prod.ejs" , chunks: [ 'index' ], }),


### templates
注意这里`<%@ page contentType="text/html; charset=UTF-8" language="java" errorPage="" %>` 需要转义
* hello.ejs
* hello_prod.ejs

```ejs
<%%@ page contentType="text/html; charset=UTF-8" language="java" errorPage="" %>
<%- include hello -%>
ythy commented 3 years ago

补充 ejs documents