webpack从0开始搭建react的ts开发环境(5)

本文演示如何用插件生成html
webpack从0开始搭建react的ts开发环境(4)
demo https://github.com/757566833/webpack-guide

1.添加生成html的插件

yarn add html-webpack-plugin --dev

2.添加一个模板template.html



  
    
    <%= htmlWebpackPlugin.options.title %>
  
  
      

3.webpack添加插件plugin

const path = require('path');
const HtmlWebpackPlugin = require("html-webpack-plugin");
module.exports = {
    entry: './src/app.ts',
    output: {
        path: path.resolve(__dirname, 'dist'),
        filename: 'app.js'
    },
    module: {
        rules: [{
            test: /\.tsx?$/,
            loader: "ts-loader",

            exclude: /node_modules/,
        }]
    },
    plugins: [
        // 这里面的template是模板的位置,title是模板渲染的变量 htmlWebpackPlugin.options.title 
        new HtmlWebpackPlugin({
            title: "test",
            template: path.resolve(__dirname, "template.html"),
        })
    ]
};
  1. 打包
npm run webpack

5.查看dist下的index.html



  
    
    test
  
  
      

已经渲染成功了,并把js代码也带进来了
webpack从0开始搭建react的ts开发环境(6)

你可能感兴趣的:(webpack从0开始搭建react的ts开发环境(5))