You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 rivejä
303 B

  1. /*
  2. * @Description: 重写静态资源URL
  3. * @Author: hai-27
  4. * @Date: 2020-04-07 23:24:37
  5. * @LastEditors: hai-27
  6. * @LastEditTime: 2020-04-07 23:26:37
  7. */
  8. module.exports = async (ctx, next) => {
  9. if (ctx.url.startsWith('/public')) {
  10. ctx.url = ctx.url.replace('/public', '');
  11. }
  12. await next();
  13. }