没有链接到bootstrap.css.map但在控制台中显示

时间:2015-04-22 15:21:36

标签: css twitter-bootstrap

以下是我使用的代码,这是来自模板,当我运行此文件时,我看到错误

bootstrap.css.map:1 GET http://localhost:8000/css/bootstrap.css.map 404 (Not Found)

但我没有链接,错误显示链接在第一行可以有人帮我链接

我如何删除该链接有人可以帮助我

<!DOCTYPE HTML>
<html lang="en">
    <head>
        <title>Animus A Blogging Category Flat Bootstarp Resposive Website Template | Home :: w3layouts</title>
        <link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all">
        <link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <meta name="keywords" content="Graphic Responsive web template, Bootstrap Web Templates, Flat Web Templates, Andriod Compatible web template, 
              Smartphone Compatible web template, free webdesigns for Nokia, Samsung, LG, SonyErricsson, Motorola web design" />
    </head>
    <body>
        <div class="contact-top">
            <div class="container">
                <h2>Log in</h2>     
                <div class="contact">
                    <p></p>
                    <div class="contact-down">
                        <div class="contact-right">
                            <div class="col-md-6 contact-info">
                                <form>
                                    <input type="text" name="your name" placeholder="USER NAME" class="input">              
                                    <input type="password" name="your email" placeholder="PASSWORD" class="input">
                                    <div class="clearfix"> </div>
                                    <input type="submit"value="SEND" />
                                </form>                 
                            </div>
                            <div class="clearfix"> </div>
                        </div>
                    </div>
                </div>  
            </div>
        </div>
    </body>
</html>

2 个答案:

答案 0 :(得分:3)

它来自你的bootstrap.css文件。您可以通过编辑该文件并从代码中删除以下行来删除引用:

/*# sourceMappingURL=bootstrap.css.map */

答案 1 :(得分:0)

源映射文件只应由开发人员工具使用。 使用Bootstrap,您可以根据需要禁用源映射,或者在使用开发工具时忽略任何.css.map的404。

如果您想使用开发工具进行调试或希望对代码有更多“完整性”,请在.css文件旁添加Bootstrap提供的.css.map文件。

参考:https://developer.chrome.com/devtools/docs/css-preprocessors

其他类似问题:what are the .map files used for in Bootstrap 3.1?