到目前爲止,我一直用這個項目結構如果index.html位於src文件夾內,如何配置BrowserSync?
project/
|
+---src/
| |
| +---app/
|
+---node_modules/
|
+---index.html
+---package.json
|
...
這工作得很好,但好像一般的方法是有index.html
的src
文件夾內。如果我這樣做,我會遇到設置BrowserSync的問題。
例如,我bs-config.js
設置爲
module.exports = {
"port": 3000,
"browser": "chrome"
};
和加載頁面
localhost:3000/src/index.html
我得到
不能/src/index.html GET
如果我嘗試
localhost:3000/index.html
取而代之的是,頁面加載,但是從node_modules
庫無法找到(404)。這裏是我的ìndex.html
:
<!DOCTYPE html>
<html>
<head>
<base href="/">
<title>App</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<!-- 1. Load libraries -->
<!-- Polyfill(s) for older browsers -->
<script src="../node_modules/core-js/client/shim.min.js"></script>
<script src="../node_modules/zone.js/dist/zone.js"></script>
<script src="../node_modules/reflect-metadata/Reflect.js"></script>
<script src="../node_modules/systemjs/dist/system.src.js"></script>
<!-- 2. Configure SystemJS -->
<script src="systemjs.config.js"></script>
<script>
System.import('app').catch(function(err){ console.error(err); });
</script>
</head>
<!-- 3. Display the application -->
<body>
<kma-app>Loading...</kma-app>
</body>
</html>
所以現在的問題是,什麼纔是我需要bs-config.js
和/或index.html
更改爲得到這個工作?
非常感謝您的支持,但問題(404節點的'node_modules'文件仍然不幸。 –
或者將'index.html'中的node_modules的源代碼更改爲'./../ node_modules/... ..'或'/ node_modules/.....' – PierreDuc