具有后端配置的webpack-dev-server

时间:2016-03-30 08:02:24

标签: webpack webpack-dev-server

我正在使用webpack-dev-server为localhost:8081上的angularjs应用程序 我也在端口8080上使用tomcat服务器。 我有下一个结构

project/
project/src/main/sources/
project/src/main/sources/css
project/src/main/sources/js
project/src/main/sources/img
project/src/main/sources/styles
project/src/main/sources/views
project/src/main/sources/index.html
project/src/main/sources/js

webapp/
webapp/build/
webapp/build/js/bundle.js
webapp/build/js/bundle.js.map
webapp/build/js/jquery.min.js

我有下一个index.html:

...

<link rel="stylesheet" href="/css/styles.css" type="text/css"/>
<script type="text/javascript" src="/js/jquery.min.js"></script>
<script type="text/javascript" src="/js/bundle.js"></script>

...

我有下一个webpack condig

var webpack = require("webpack");

module.exports = {
    context: __dirname + "\\src\\main\\sources",
    entry: ["./index.js",
        'webpack/hot/dev-server',
        'webpack-dev-server/client?http://localhost:8081'],
    output: {
        path: __dirname + "\\src\\main\\webapp\\build\\js\\",
        filename: "bundle.js",
        publicPath: "\\js\\"
    },
    module: {
        loaders: [
            {
                test: /\.css$/,
                loader: 'style!css'
            },
            {test: /\.js$/, loader: "babel", query: { presets: ['es2015'] }},
            {test: /\.html$/, loader: "raw"}
        ]
    },
    plugins: [
        new webpack.HotModuleReplacementPlugin()
    ],
    devServer: {
        contentBase: __dirname + "\\src\\main\\sources",
        publicPath: '/js/',
        port: 8081,
        historyApiFallback: true,
        proxy: {
            '/somePath' : 'http://localhost:8080/'
        }
    }
};

所以当我打开http://localhost:8081/webpack-dev-server/js/bundle时,我会看到&#34; HOT&#34;束。 使用这个配置:css样式,img没有从localhost:8081获得,但它与webpack有关,我也需要重新编译它。如何更改配置?

此外,我对服务器端有很多不同的请求,如:

"localhost:8081/someRequest1/some", 
"localhost:8081/someRequest2/some", 
......
"localhost:8081/someRequest1/some"

我无法在代理设置中编写每个请求,配置中的女巫设置会起作用吗? 我试过了

proxy: {
            '*' : 'http://localhost:8080/',
            '/js/*': '/'
        }

找不到此配置js / bundle。 我也试过

proxy: {
            '*' : 'http://localhost:8080/',
            '/js/*': '/'
        }

proxy: {
            '*' : 'http://localhost:8080/',
            '/js/*': 'http://localhost:8081/'
        }

js / bundle也不行。

更新1。 可能我需要代理除/ js /之外的所有请求。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

您需要的只是一种模式,即:

proxy: {
        '/api/v1/*' : 'http://localhost:8080/',
    }

或只是

proxy: {
        '/api/*' : 'http://localhost:8080/',
    }

这要求您更新api以遵循此行为。