代码之家  ›  专栏  ›  技术社区  ›  petspanda D

Autoprefixer不支持节点v0.10.37错误

  •  3
  • petspanda D  · 技术社区  · 6 年前

    在尝试localhost:3000时,它抛出错误为

    ActionView::Template::Error (Autoprefixer doesn’t support Node v0.10.37. Update it.):
    

    我已尝试更新节点,但没有可用的更新。

    node -v # v8.1.3
    nodejs -v # v0.10.37
    

    gem 'bootstrap', '~> 4.1.3', and others
    

    Gemfile.lock文件

    autoprefixer-rails (9.1.1)
    
    2 回复  |  直到 6 年前
        1
  •  11
  •   Karl Wilbur William Pursell    6 年前

    我有一个类似的问题,通过添加 gem 'mini_racer' 进入你的档案。

        2
  •  0
  •   Luismejiadev    6 年前

    我的问题是 自动刷新器 作为另一个包的依赖项安装,但未指定版本,因此安装的版本为9.4.3,这与本地节点安装冲突。

    我在GemFile中为包添加了一个特定的版本,并运行 捆绑安装

    gem 'autoprefixer-rails', '~> 7.1.6'
    
        3
  •  0
  •   Victor Okeugo    5 年前

    Gemfile 对于

    # gem 'mini_racer', platforms: :ruby

    并取消注释。你应该有

    gem 'mini_racer', platforms: :ruby

    跑步 bundle update