我正在使用Roots开发应用程序,当我运行roots watch
命令时,它会成功编译并打开localhost:1111
页面,但出现以下错误:
Cannot GET /
这就是我的app.coffee文件的样子,尽管我在 SOF 中寻找了解决此问题的方法,但它们似乎都不适用于这种情况。
axis = require 'axis'
rupture = require 'rupture'
autoprefixer = require 'autoprefixer-stylus'
js_pipeline = require 'js-pipeline'
css_pipeline = require 'css-pipeline'
module.exports =
ignores: ['readme.md', '**/layout.*', '**/_*', '.gitignore', 'ship.*conf']
extensions: [
js_pipeline(files: 'assets/js/*.coffee'),
css_pipeline(files: 'assets/css/*.styl')
]
stylus:
use: [axis(), rupture(), autoprefixer()]
sourcemap: true
'coffee-script':
sourcemap: true
jade:
pretty: true
这是一个不同的解决方案,因为这是 CoffeeScript 而不是 JS?