我尝试通过file-loader
和 Webpack 3 加载我的index.html
文件。
我的webpack.config.ts
如下所示:
import * as webpack from 'webpack';
const config: webpack.Configuration = {
entry: "./src/app.tsx",
output: {
filename: "bundle.js",
path: __dirname + "/dist"
},
devtool: "source-map",
resolve: {
extensions: [".webpack.js", ".web.js", ".ts", ".tsx", ".js", ".html"]
},
module: {
rules: [
{
test: /.tsx?$/,
loader: "awesome-typescript-loader"
}, {
test: /.html$/,
loader: "file-loader"
}
]
}
};
export default config;
不幸的是,它没有将我的src/index.html
文件加载到dist
文件夹中。我做错了什么?如何将索引文件从src
文件夹获取到dist
文件夹?
您可以使用html-webpack-plugin
.
{
plugins: [
new HtmlWebpackPlugin({
template: 'src/index.html'
})
]
}