webpack-dev-serverでテンプレートエンジンを使う
2228 ワード
webpack-dev-serverはExpressが使われているのでejsを組み込むことができます。
クエリパラメータによってHTMLの一部を変えたいときなんかに使えるかもしれません。
webpack.js
const ejs = require('ejs');
module.exports = {
devServer: {
before: (app) => {
app.set('ejs', ejs.render);
app.get('/cypress', (req, res) => {
res.render('./index.ejs', {input: req.query.input});
});
}
}
};
Author And Source
この問題について(webpack-dev-serverでテンプレートエンジンを使う), 我々は、より多くの情報をここで見つけました https://qiita.com/bunnycom/items/6d320eecc26e0f8452b3著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .