文件服务器前台 基于Vue的项目,默认已经配置好了公用后台地址,可以直接启动访问。
npm install
注意:如果 npm 使用 taobao 源或者 cnpm 下载可能会出现找不到模块的报错,请使用 npm 官方源下载
npm run serve
修改 vue.config.js 需要添加代理:
devServer: {
proxy: {
'/api/admin': {
target: 'http://localhost:8888/fileserver',
pathRewrite: {
'/api/admin': '',
},
cookiePathRewrite: {
'/fileserver/': '/api',
},
},
'/api/file': {
target: 'http://localhost:8888/fileserver',
pathRewrite: {
'/api/file': '',
},
},
}
}
重新启动即可