0

我正在使用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?

4

1 回答 1

2

所以事实证明,我需要cd project-name在我完成之后roots new project-name,然后才会roots watch工作。

这样一个菜鸟的错误,但是一个很好的教训。

于 2016-02-26T03:08:44.313 回答