(提供了图片)所以我一直在关注 webpack 上的教程,我按照说明进行操作,但是当我点击端口 8080 时,我看到的是这个而不是组件模板,我使用的是 webpack-dev-server
这是 webpack.config.js
var webpack = require("webpack");
var htmlwebpack = require('html-webpack-plugin');
//consfiguring object
module.exports = {
entry : "./src/main.ts",
output : {
path : "./dist",
filename : "app.bundle.js"
},
//out first module for ts
module : {
loaders : [
{test : /\.ts$/, loader : 'ts'}
]
},
//what extension should be look for
resolve : {
extensions : ['', '.ts','.js']
},
Plugin :[
new htmlwebpack({
template : './src/index.html'
})
]
}