无法加载资源 404 style.css firebase
Failed to load resource 404 style.css firebase
从我的静态网站接收到以下控制台日志
Failed to load resource: the server responded with a status of 404 ()
于 style.css
项目结构
root - home.html
根目录中的文件夹 - styles
'styles' 文件夹内的文件 - style.css
(这是一个简单的网站,用于测试 firebase)
我使用 firebase 创建了我的网站实例,它将我的 html 输出到 public 文件夹,其中包含 index.html
但没有 css 文件。
像这样public/index.html
我使用 <style media="screen">
添加了内联 css 来解决这个问题,它可以工作,但它仍然不是 reading/finding 我的 style.css 文件
style.css
link 在 index.html
内(已创建 firebase)
<link rel="stylesheet" type="text/css" href="../style/style.css">
查看了其他答案,但他们使用的是 bootstrap 提供的 cdn/url。我希望能够使用我创建的那个。
Firebase 托管只会托管您 public
folder 下的文件。这意味着您的 style
文件夹未被上传,因此 index.html
无法检测到 css 文件。
您需要将样式文件夹移动到 public 文件夹中,并将 link 更改为:
<link rel="stylesheet" type="text/css" href="style/style.css">
从我的静态网站接收到以下控制台日志
Failed to load resource: the server responded with a status of 404 ()
于 style.css
项目结构
root - home.html
根目录中的文件夹 - styles
'styles' 文件夹内的文件 - style.css
(这是一个简单的网站,用于测试 firebase)
我使用 firebase 创建了我的网站实例,它将我的 html 输出到 public 文件夹,其中包含 index.html
但没有 css 文件。
像这样public/index.html
我使用 <style media="screen">
添加了内联 css 来解决这个问题,它可以工作,但它仍然不是 reading/finding 我的 style.css 文件
style.css
link 在 index.html
内(已创建 firebase)
<link rel="stylesheet" type="text/css" href="../style/style.css">
查看了其他答案,但他们使用的是 bootstrap 提供的 cdn/url。我希望能够使用我创建的那个。
Firebase 托管只会托管您 public
folder 下的文件。这意味着您的 style
文件夹未被上传,因此 index.html
无法检测到 css 文件。
您需要将样式文件夹移动到 public 文件夹中,并将 link 更改为:
<link rel="stylesheet" type="text/css" href="style/style.css">