最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - BrowserSync + gulp: Cross domain Cors Issue - Stack Overflow

programmeradmin1浏览0评论

I'm working on a project where my workspace is directly in a distant server.

So far i'm loading the browser-sync-client by using my own ip in the src file:

<script type='text/javascript' id="__bs_script__">//<![CDATA[
document.write("<script async src='MYIP:3000/browser-sync/browser-sync-client.1.9.2.js'><\/script>".replace(/HOST/g, location.hostname).replace(/PORT/g, location.port));//]]></script>

But I run into a Cross-Origin Request issue.

Any idea how to configure my gulp ?

  browserSync({files: [constants.CSS_FOLDER+"/**/*.css"]});

Thanks !

I'm working on a project where my workspace is directly in a distant server.

So far i'm loading the browser-sync-client by using my own ip in the src file:

<script type='text/javascript' id="__bs_script__">//<![CDATA[
document.write("<script async src='MYIP:3000/browser-sync/browser-sync-client.1.9.2.js'><\/script>".replace(/HOST/g, location.hostname).replace(/PORT/g, location.port));//]]></script>

But I run into a Cross-Origin Request issue.

Any idea how to configure my gulp ?

  browserSync({files: [constants.CSS_FOLDER+"/**/*.css"]});

Thanks !

Share Improve this question edited Mar 4, 2016 at 17:42 Eloy Pineda 2,19718 silver badges22 bronze badges asked Jun 15, 2015 at 7:45 user2283958user2283958 1152 silver badges9 bronze badges 1
  • did you unaccepted my answer? If so, can you tell me why you did it? – Eloy Pineda Commented Apr 14, 2017 at 7:51
Add a ment  | 

1 Answer 1

Reset to default 12

I am not sure if I fully understand what you are trying to do, but you can add a middleware in BrowserSync and there you can add any header that you want.

It will look something like this:

browserSync({
    server: {
        baseDir: './build',
        middleware: function (req, res, next) {
            res.setHeader('Access-Control-Allow-Origin', '*');
            next();
        }
    }
});
发布评论

评论列表(0)

  1. 暂无评论