Browserify和babelify在本地工作,但不在实时网站上

时间:2016-08-29 03:27:44

标签: javascript html css github browserify

我正在使用React和Javascript构建一个项目,我正在使用Browserify和Babelify构建,输出bundle.js文件。当我在本地运行index.html时,正确加载Bootstrap,fonts和CSS文件等所有内容。但是在将它提交到Github Pages到我的自定义域之后,一切都搞砸了 - 图像到处都是,没有格式化,Bootstrap显然没有加载。我假设文件路径搞砸了,但为什么呢?

<head>
    <link rel="stylesheet" href="./src/stylesheet/style.scss"> # The path only works locally
</head>
<body>
    <div id="app"></div>
    <script src="./bundle.js"></script>
</body>

0 个答案:

没有答案