赞
踩
将robots.txt文件添加到vue项目static文件夹下
打开build/webpack.prod.conf.js文件,定位到
- new CopyWebpackPlugin([
- {
- from: path.resolve(__dirname, '../static'),
- to: config.build.assetsSubDirectory,
- ignore: ['.*']
- }
- ])
添加代码,在打包的时候将robots.txt文件复制到根目录下(与index.html同级)
- {
- from: path.resolve(__dirname, '../static/robots.txt'),//防爬虫文件
- to:'./',//到根目录下
- }
在工程文件根目录打开控制台,输入 npm run build:prod 执行完毕后查看dist文件夹
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。