1 Star 0 Fork 0

jso0/Vue-cnodejs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
server.js 720 Bytes
一键复制 编辑 原始数据 按行查看 历史
shinygang 提交于 2015-12-01 09:14 . add 'use strict'
'use strict'
var webpack = require('webpack');
var WebpackDevServer = require('webpack-dev-server');
var config = require('./webpack.config');
config.entry.unshift('webpack-dev-server/client?http://localhost:8090', "webpack/hot/dev-server");
config.plugins.push(new webpack.HotModuleReplacementPlugin());
// 这里配置:请求http://localhost:9090/api,
// 相当于通过本地node服务代理请求到了http://cnodejs.org/api
var proxy = [{
path: "/api/*",
target: "https://cnodejs.org",
host: "cnodejs.org"
}]
//启动服务
var app = new WebpackDevServer(webpack(config), {
publicPath: config.output.publicPath,
hot:true,
historyApiFallback: true,
proxy:proxy
});
app.listen(8090);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/ijimmy/Vue-cnodejs.git
[email protected]:ijimmy/Vue-cnodejs.git
ijimmy
Vue-cnodejs
Vue-cnodejs
master

搜索帮助