Skip to content

JoyLinks/html-include-loader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

html-in-loader

WEBPACK html-include-loader 支持通过标签包含HTML文件

<include src="header.html" />

安装

npm install html-loader --save-dev
npm install @joyzl/html-include-loader --save-dev

配置

webpack.config.js 中配置规则

module: {
	rules: [{
		test: /\.html$/i,
		use: ['html-loader', '@joyzl/html-include-loader'],
	}]
}

尽情创建多页面吧!!!