项目添加robots.txt 防止后台管理系统被搜索引擎收录

This commit is contained in:
Live 2020-06-09 11:37:39 +08:00 committed by Gitee
parent 19b8688759
commit 0c069a57cc
1 changed files with 5 additions and 1 deletions

View File

@ -117,7 +117,11 @@ module.exports = {
} }
} }
}) })
config.optimization.runtimeChunk('single') config.optimization.runtimeChunk('single'),
{
from: path.resolve(__dirname, './public/robots.txt'),//防爬虫文件
to:'./',//到根目录下
}
} }
) )
} }