我正在通过 lite-server 使用 browsersync,并具有以下配置:
{
"port": 8000,
"files": [
"./src/**/*.{html,htm,css,js}"
],
"server": {
"baseDir": "./src",
"routes": {
"node_modules": "../node_modules" <--- Attempt to serve node_modules
}
}
}
项目布局是这样的:
node_modules
src
|-app
|-index.html
|-systemjs.config.js
package.json
bs-config.json
问题是,在index.html
任何引用
内部都<script src="node_modules/....js">
失败并出现 404。