Bootstrap

前端项目常见的处理跨域的两种方式

前端处理跨域

webpack配置

通过设置webpack.config.js中的devserver属性来配置跨域:

const path = require('path'); //调用node.js中的路径
module.exports={
   
    entry:{
   
        index:'./src/index.js' //需要打包的文件
    
;