我是通过webpack-dev-server启动我的应用程序,但不是完整的URL,例如:http://localhost:8080/welcome webpack总是显示http://localhost:8080/webpack-dev-server。有没有改变它的选择?
这是我的webpack配置:
{
test: /public\/static.*\.js$/,
exclude: /node_modules/,
loader: 'babel-loader',
}
这些是我的装载者:
var loaders = require("./loaders");
var webpack = require('webpack');
module.exports = {
debug: true,
entry: ['./app/main.ts',],
output: {
filename: './dist/build.js'
},
devtool: 'source-map',
resolve: {
root: __dirname,
extensions: ['', '.ts', '.js', '.json']
},
resolveLoader: {
modulesDirectories: ["node_modules"]
},
plugins: [
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
'window.jQuery': 'jquery',
'window.jquery': 'jquery'
})
],
module: {
loaders: loaders
},
externals: {
'angular': 'angular',
'lodash': '_'
}
};
答案 0 :(得分:0)
默认情况下,请转到localhost:8080 /以启动您的应用。如果您使用的是i-frame模式,那么它将进入http://localhost:8080/webpack-dev-server。如果要通过localhost:8080运行应用程序,请将publicPath设置为输出中的'/'
output: {
filename: './dist/build.js',
publicPath:"/"
}
并在你的package.json
中"start":"webpack-dev-server"