您好我正在嘗試使用LESS引導程序使用客戶端js編譯方法以避免使用命令行等。我已包含最新版本的LESS.js以及鏈接到neccessary來與引導,但減檔時,我加載頁面我得到這個錯誤:無法找到Bootstrap中的客戶端LESS文件
FileError: 'http://localhost/boyd/assets/less/bootstrap.less' wasn't found (404)
這裏是在頭中使用的代碼:
<link rel="stylesheet/less" type="text/css" href="<?php echo get_template_directory_uri(); ?>/assets/less/variables.less" />
<script src="<?php echo get_template_directory_uri(); ?>/assets/js/less-1.4.1.min.js" type="text/javascript"></script>
嘗試在瀏覽器中訪問您的bootstrap.less文件。一旦您驗證了路徑在您的瀏覽器中工作,然後修改您的腳本標籤與正確的路徑。 –