Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

New Rails 8.1 (alpha) + activeadmin:masterThe asset 'active_admin.css' was not found in the load path.#8538

Unanswered
krtschmr asked this question inHelp
Discussion options

  • App running on Rails 8.1-alpha app
  • added active admin with skip-user
  • rails s

💥

Started GET "/admin" for ::1 at 2024-11-12 17:20:05 +0100Processing by Admin::DashboardController#index as HTML  Rendering layout /usr/share/rvm/gems/ruby-3.3.1/bundler/gems/activeadmin-25a6b3668e0e/app/views/layouts/active_admin.html.erb  Rendering /usr/share/rvm/gems/ruby-3.3.1/bundler/gems/activeadmin-25a6b3668e0e/app/views/active_admin/page/index.html.arb within layouts/active_admin  Rendered /usr/share/rvm/gems/ruby-3.3.1/bundler/gems/activeadmin-25a6b3668e0e/app/views/active_admin/page/index.html.arb within layouts/active_admin (Duration: 0.5ms | GC: 0.0ms)  Rendered /usr/share/rvm/gems/ruby-3.3.1/bundler/gems/activeadmin-25a6b3668e0e/app/views/active_admin/_html_head.html.erb (Duration: 0.5ms | GC: 0.0ms)  Rendered layout /usr/share/rvm/gems/ruby-3.3.1/bundler/gems/activeadmin-25a6b3668e0e/app/views/layouts/active_admin.html.erb (Duration: 1.5ms | GC: 0.0ms)Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.0ms (0 queries, 0 cached) | GC: 0.0ms)  ActionView::Template::Error (The asset 'active_admin.css' was not found in the load path.)Caused by: Propshaft::MissingAssetError (The asset 'active_admin.css' was not found in the load path.)Information for: ActionView::Template::Error (The asset 'active_admin.css' was not found in the load path.):    1: <%= stylesheet_link_tag "active_admin" %>    2: <meta name="viewport" content="width=device-width,initial-scale=1">    3: <%= csrf_meta_tags %>    4: <%= csp_meta_tag %>  propshaft (1.1.0) lib/propshaft/helper.rb:4:in `compute_asset_path'rails (852d0cd41234) actionview/lib/action_view/helpers/asset_url_helper.rb:204:in `asset_path'rails (852d0cd41234) actionview/lib/action_view/helpers/asset_url_helper.rb:349:in `stylesheet_path'rails (852d0cd41234) actionview/lib/action_view/helpers/asset_tag_helper.rb:213:in `block in stylesheet_link_tag'rails (852d0cd41234) actionview/lib/action_view/helpers/asset_tag_helper.rb:212:in `map'rails (852d0cd41234) actionview/lib/action_view/helpers/asset_tag_helper.rb:212:in `stylesheet_link_tag'propshaft (1.1.0) lib/propshaft/helper.rb:16:in `stylesheet_link_tag'activeadmin (25a6b3668e0e) app/views/active_admin/_html_head.html.erb:1rails (852d0cd41234) actionview/lib/action_view/base.rb:281:in `public_send'rails (852d0cd41234) actionview/lib/action_view/base.rb:281:in `_run'

unsure how to fix, but following the guides (https://activeadmin.info/0-installation.html) seems broken.

You must be logged in to vote

Replies: 15 comments 21 replies

Comment options

  • activeadmin (4.0.0.beta1325a6b36)
  • rails (8.1.0.alpha 852d0cd)
You must be logged in to vote
0 replies
Comment options

Thanks for early testing against 8.1

I will start checking rails-edge compatibility as a low priority task after we merge#8500 (which is blocked upstream)

You must be logged in to vote
0 replies
Comment options

This also reproduced in rails 8.0.
The asset 'active_admin.css' was not found in the load path.

Steps:

  1. Creating blank application.
rails new my_appcd my_app
  1. Following installation guide.
bundle add activeadmin -v=4.0.0beta13bundle add deviserails g active_admin:installrails db:migraterails db:seed
  1. Running server
rails server
  1. Visitinghttp://localhost:3000/admin.
ActionView::Template::Error (The asset 'active_admin.css' was not found in the load path.)Caused by: Propshaft::MissingAssetError (The asset 'active_admin.css' was not found in the load path.)

Am I missing some command or gem? Or maybe options to create blank rails app?

You must be logged in to vote
9 replies
@tagliala
Comment options

Hello, I think that you are very close

rails _8.0.2_ new my_appcd my_appbundle add activeadmin -v=4.0.0beta15bundle add deviserails g active_admin:installbundle add cssbundling-rails -v "1.4.1" # Newer versions support TailwindCSS v4bundle add tailwindcss-ruby -v "~> 3.4.17"yarn add tailwindcss@^3.4.17 # <-- ActiveAdmin uses TailwindCSS v3rails css:install:tailwind # <-- If tailwind v3 is not being found in package.json, it will install v4rails db:migraterails db:seedgem "tailwindcss-ruby", "3.4.13"yarn add @activeadmin/activeadmin@4.0.0-beta15npm pkg set scripts.build:css="tailwindcss -i ./app/assets/stylesheets/active_admin.css -o ./app/assets/builds/active_admin.css --minify -c tailwind-active_admin.config.js"

And then run

./bin/dev

instead ofrails s (or manually compile assets before)

If you have problems, please post the output ofyarn/npm/pnpm/whatever build:css

References:

I think that installation instructions should be slightly modified,however this depends on the use case. I suspect there are several ways of installing ActiveAdmin, one does not even include node, so I don't know what the default way should be

@PoroshkinaVV
Comment options

It would be really great, if I don't have such dependencies, as node/yarn.

yarn build:css --watchyarn run v1.22.22$ tailwindcss -i ./app/assets/stylesheets/active_admin.css -o ./app/assets/builds/active_admin.css --minify -c tailwind-active_admin.config.js --watchRebuilding...(node:61251) ExperimentalWarning: CommonJS module /Users/valeriya/Documents/workspace/my_app/tailwind-active_admin.config.js is loading ES Module /Users/valeriya/Documents/workspace/my_app/node_modules/@activeadmin/activeadmin/plugin.js using require().Support for loading ES Module in require() is an experimental feature and might change at any time(Use `node --trace-warnings ...` to show where the warning was created)file:///Users/valeriya/Documents/workspace/my_app/node_modules/@activeadmin/activeadmin/plugin.js:1const plugin = require('tailwindcss/plugin')               ^ReferenceError: require is not defined    at file:///Users/valeriya/Documents/workspace/my_app/node_modules/@activeadmin/activeadmin/plugin.js:1:16    at ModuleJobSync.runSync (node:internal/modules/esm/module_job:395:35)    at ModuleLoader.importSyncForRequire (node:internal/modules/esm/loader:329:47)    at loadESMFromCJS (node:internal/modules/cjs/loader:1380:24)    at Module._compile (node:internal/modules/cjs/loader:1532:5)    at Object..js (node:internal/modules/cjs/loader:1702:10)    at Module.load (node:internal/modules/cjs/loader:1307:32)    at Function._load (node:internal/modules/cjs/loader:1121:12)    at TracingChannel.traceSync (node:diagnostics_channel:322:14)    at wrapModuleLoad (node:internal/modules/cjs/loader:219:24)Node.js v23.2.0error Command failed with exit code 1.info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
@PoroshkinaVV
Comment options

I believeplugin.js must have another syntax.

For example, doing such conversion intailwind-active_admin.config.js fixed similar error.

const execSync = require('child_process').execSync;
->
import { execSync } from 'child_process';

@tagliala
Comment options

Ok thanks, it's Node 23.

As a workaround, please switch to 22 LTS

Ref:#8534

@NemiSanghvi
Comment options

i am also facing the same issue as some one new to rails already i want to solve this issue but can't find any solution been messing with the internet for around 4 5 hours
Can any one give me solution
and i am not even working with npm what will be the solution

Comment options

So it appears to be a problem with Propshaft, but as far as I can see the default javascript for Rails 8 is importmap

ActiveAdmin uses importmap by default, the generator has this line:

--javascript=importmap

Reference to propshaft:#8298 (comment)

PRs and investigations are welcomed


edit 1

I can see propshaft in the Gemfile of the test app

# The modern asset pipeline for Rails [https://github.com/rails/propshaft]gem "propshaft"
You must be logged in to vote
0 replies
Comment options

Sorry, probably it iscssbundling-rails missing

Ref:https://github.com/activeadmin/activeadmin/blob/master/UPGRADING.md#from-v3-to-v4-beta

Please add this gem and try again.

This is mentioned in the upgrade guide but not in the first install guide, because I guess it is "optional" and depends on the approach used to load Active Admin

You must be logged in to vote
2 replies
@justinperkins
Comment options

Thanks@tagliala, with thecssbundling-rails gem added I'm now receiving build pipeline errors

cssbundling-rails: Command build failed, ensure `yarn build:css` runs without errors
@PoroshkinaVV
Comment options

@justinperkins try to follow#8538 (reply in thread) for new app or#8538 (reply in thread) for existing app

Comment options

Thank you,@tagliala! I'm finally done with starting application with builded styles.

Following discussion header,this also works on rails 8.1.0.alpha:#8538 (reply in thread)

Important note: node version must be lower than 23.

Also, it would be great, if we have some way to install and make things work without node/yarn.

You must be logged in to vote
5 replies
@krtschmr
Comment options

awesome.
how can we improve the docs so it works out of the box for everyone?
nodejs shall not be required, i agree.

@PoroshkinaVV
Comment options

My environment.

ruby v3.3.6rails v8.0.0node v22.2.0yarn v1.22.22

For an existing application, which didn't support any assets earlier, I had to do this steps:

  1. Add to Gemfile
gem 'activeadmin', '4.0.0beta13'gem 'cssbundling-rails'gem 'devise'gem 'importmap-rails'gem 'propshaft'
  1. Run all commands for installing activeadmin:
rails g active_admin:install User # I've already had User model with deviserails generate active_admin:assets
  1. Run commands for generating and filling package.json
yarn add @activeadmin/activeadmin@4.0.0-beta13npm pkg set scripts.build:css="tailwindcss -i ./app/assets/stylesheets/active_admin.css -o ./app/assets/builds/active_admin.css --minify -c tailwind-active_admin.config.js"

It generates me package.json with following lines:

{"dependencies": {"@activeadmin/activeadmin":"4.0.0-beta13"  },"scripts": {"build:css":"tailwindcss -i ./app/assets/stylesheets/active_admin.css -o ./app/assets/builds/active_admin.css --minify -c .tailwind-active_admin.config.js"  }}
  1. Run assets compilation:
rails css:installyarn build:css

But here my activeadmin page still looks like there is no styles. So..

  1. I made some changes including moving tailwind-active_admin.config.js to app/assets/config (it's not necessary!). And my package.json became this:
{"name":"my_app","private":"true","dependencies": {"@activeadmin/activeadmin":"4.0.0-beta13","tailwindcss":"^3.4.15","autoprefixer":"^10.4.20","postcss":"^8.4.49"  },"scripts": {"build:css":"tailwindcss -i ./app/assets/stylesheets/active_admin.css -o ./app/assets/builds/active_admin.css --minify -c ./app/assets/config/tailwind-active_admin.config.js"  }}

As far as I understand,

  • name is not necessary
  • private need for not asking license, if it is a private app
  • without tailwindcss, autoprefixer, postcss packages I didn't get result 🤷UPD: however, I dropped them later, and it also works 🤷

And I change path to tailwind-active_admin.config.js in my package.json

  1. Run assets compilation again:
yarn build:css

NOTE: don't forget to add these lines to.gitignore:

/app/assets/builds/*!/app/assets/builds/.keep/node_modules

IT WORKS!with a little bug

My icons for toggling dark mode and user's account were not icons, but text:
image

The problem was in LANG.activeadmin.yml. I need to add lines to .yml file:

LANG:activeadmin:toggle_dark_mode:Toggle dark modetoggle_main_navigation_menu:Toggle main navigation menutoggle_section:Toggle sectiontoggle_user_menu:Toggle user menu

So,@tagliala, I believe, that all locales files in repositorymust have these four lines, at least, in English. I can make a PR with adding English translations of this four fields to each locale.
For now, only works foren.yml.

@krtschmr
Comment options

is there any way we can get this running with no-build basically, so zero dependency on yarn etc?
could we, in the github pipeline, build the actual css and have it served then from the gem as a static file? that can be one option, so people can't really customize, but it serves out of the box flawless.

@tagliala
Comment options

I can make a PR with adding English translations of this four fields to each locale.

This should not be a problem in production. In development you can spot the problem and send a PR for your locale

is there any way we can get this running with no-build basically, so zero dependency on yarn etc?

There is another discussion for that, please ask there:#8223

@Uelb
Comment options

For those who followed these steps without success, there is one small thing to add.@tagliala and@PoroshkinaVV, thanks so much for the research.

If you use Tailwind 4,
The import directives :
@tailwind base; @tailwind components; @tailwind utilities;
have been changed to :
@import "tailwindcss";

So make sure to change this in your active_admin.css file so it works properly

Comment options

If there is an answer for 8.1 alpha, please mark the answer as answer and close this discussion, thanks!

You must be logged in to vote
0 replies
Comment options

Hello, suggestions on this PR are welcomed:#8545

You must be logged in to vote
0 replies
Comment options

I managed to have it displayed correctly but I'm stuck with the JS.
Here is my config:

Rails: 8.0.2stimulus-rails: 1.3.4activeadmin: 4.0.0.beta15cssbundling-rails: 1.4.3jsbundling-rails: 1.3.1

I'm not usingimportmap.

Customization

  1. Generate local active_admin views

I need to keep all of them, even if I'm only updatingapp/views/active_admin/_html_head.html.erb. I have no idea why.
This is actually the weirdest part. I've extracted both generated HTML. Except auto-added comments, everything is similar. But it does not work without "local" views.

html_comparison.zip

@tagliala maybe you have an idea about this behavior?

rails g active_admin:views
  1. Overrideapp/views/active_admin/_html_head.html.erb
<%= stylesheet_link_tag "active_admin", "data-turbo-track": "reload"%><metaname="viewport"content="width=device-width,initial-scale=1»<%=csrf_meta_tags%><%=csp_meta_tag%><%# On page load or when changing themes, best to add inline in `head` to avoid FOUC%><%= javascript_tag nonce: true do%>  if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {    document.documentElement.classList.add('dark')  } else {    document.documentElement.classList.remove('dark')  }<% end%><%= javascript_include_tag "active_admin", "data-turbo-track": "reload"%>
  1. Confirmation of content forapp/assets/stylesheets/active_admin.css
@import "tailwindcss";
  1. Update ofapp/assets/config/manifest.js
//= link_tree ../images//= link application.css//= link application.js//= link active_admin.css//= link active_admin.js
  1. Upgradepackage.json

Aim is to keepapp andadmin separated from one another

{  "name": "app",  "private": true,  "devDependencies": {    "concurrently": "^9.1.2",    "esbuild": "^0.25.2"  },  "scripts": {    "build": "esbuild app/javascript/*.* --bundle --sourcemap --format=esm --outdir=app/assets/builds --public-path=/assets",    "build:css": "concurrently --kill-others-on-fail \"yarn build:app\" \"yarn build:admin\«,    "build:app": "npx @tailwindcss/cli -i ./app/assets/stylesheets/application.tailwind.css -o ./app/assets/builds/application.css --minify",    "build:admin": "npx @tailwindcss/cli -i ./app/assets/stylesheets/active_admin.css -o ./app/assets/builds/active_admin.css --minify -c tailwind-active_admin.config.js",    "dev:css": "concurrently --kill-others-on-fail \"yarn dev:app\" \"yarn dev:admin\«,    "dev:app": "npx @tailwindcss/cli -i ./app/assets/stylesheets/application.tailwind.css -o ./app/assets/builds/application.css --minify --watch",    "dev:admin": "npx @tailwindcss/cli -i ./app/assets/stylesheets/active_admin.css -o ./app/assets/builds/active_admin.css --minify --watch -c tailwind-active_admin.config.js"  },  "dependencies": {    "@activeadmin/activeadmin": "4.0.0-beta15",    "@hotwired/stimulus": "^3.2.2",    "@hotwired/turbo-rails": "^8.0.13",    "@tailwindcss/cli": "^4.1.4",    "tailwindcss": "^4.1.4"  }}
  1. Update ofProcfile.dev
web: RUBY_DEBUG_OPEN=true bin/rails serverjs: yarn build --watchcss: yarn dev:css --watch

Run

I first need to run `` to it generatespublic/assets/*

# To generate public/assets/*rails assets:precompilebin/dev

JS Problem

With about_html_head.erb I made the update to not useimportmap soactive_admin.js does not exist yet.

I've createdapp/javascript/active_admin.js

import "@activeadmin/activeadmin";

I got this final error:

getWindow.js:1 Uncaught RangeError: Maximum call stack size exceeded    at getWindow (getWindow.js:1:8)    at getComputedStyle (getComputedStyle.js:3:10)    at getComputedStyle (getComputedStyle.js:3:29)    at getComputedStyle (getComputedStyle.js:3:29)    at getComputedStyle (getComputedStyle.js:3:29)    at getComputedStyle (getComputedStyle.js:3:29)    at getComputedStyle (getComputedStyle.js:3:29)    at getComputedStyle (getComputedStyle.js:3:29)    at getComputedStyle (getComputedStyle.js:3:29)    at getComputedStyle (getComputedStyle.js:3:29)

This is coming from this DOM

// app/views/active_admin/_site_header.html.erb:16<button data-dropdown-toggle="user-menu" data-dropdown-offset-distance="3" data-dropdown-placement="bottom-end" aria-label="<%= t('active_admin.toggle_user_menu') %>">    <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20"><path d="M10 0a10 10 0 1 0 10 10A10.011 10.011 0 0 0 10 0Zm0 5a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm0 13a8.949 8.949 0 0 1-4.951-1.488A3.987 3.987 0 0 1 9 13h2a3.987 3.987 0 0 1 3.951 3.512A8.949 8.949 0 0 1 10 18Z"/></svg></button>
You must be logged in to vote
0 replies
Comment options

hi everyone, this gem helped mehttps://github.com/jaynetics/activeadmin_assets/

You must be logged in to vote
1 reply
@dankmitchell
Comment options

Thank you! The simplicity of adding an admin gem has gone out the window with Version 4 of AA :-/

This comment was marked as off-topic.

Comment options

Hello,

I've noticed that my instructions above don't work anymore.

This is mostly because TailwindCSS v4. Since ActiveAdmin uses v3, it is a mess to make it work

Please always remember that there is not a single way to configure assets, this is just one of the possible approaches.Do whatever is the best for your project

The following should work:

rails _8.0.2_ new my_appcd my_appbundle add activeadmin -v=4.0.0beta15bundle add deviserails g active_admin:installbundle add cssbundling-rails -v "1.4.1" # Newer versions support TailwindCSS v4bundle add tailwindcss-ruby -v "~> 3.4.17"yarn add tailwindcss@^3.4.17 # ActiveAdmin uses TailwindCSS v3rails css:install:tailwind # TailwindCSS v3 should be already present in package.json, otherwise this will install v4rails db:migraterails db:seedyarn add @activeadmin/activeadmin@4.0.0-beta15npm pkg set scripts.build:css="tailwindcss -i ./app/assets/stylesheets/active_admin.css -o ./app/assets/builds/active_admin.css --minify -c tailwind-active_admin.config.js"

And then run

./bin/dev
You must be logged in to vote
1 reply
@thomasrossetto
Comment options

I ran into the same solution yesterday! I was planning to share it today, but you beat me to it. Thanks for sharing@tagliala ! 😄

Comment options

My running environment

gem "rails", "~> 8.0.2"
ruby 3.3.5
gem "propshaft"
gem 'activeadmin' V 3.3.0
gem 'sassc-rails' # Required for ActiveAdmin styling
bundle install,
And also add this method in confgi/application.rb file
" config.assets.configure do |env|
env.cache = Sprockets::Cache::FileStore.new(
File.join(Dir.tmpdir, 'sprockets'),
config.assets.cache_limit,
env.logger
)
end if Rails.env.development?"

Screenshot from 2025-07-02 11-04-34
Screenshot from 2025-07-02 11-04-57
Screenshot from 2025-07-02 11-05-09

You must be logged in to vote
2 replies
@tagliala
Comment options

gem 'sassc-rails' # Required for ActiveAdmin styling

This is Active Admin 3, correct?

This discussion is related to the master branch (v4 beta)

@naveed60
Comment options

It's Active admin V3.3.0

Comment options

Still facing the issue.

Environment Details

Versions

  • Ruby: 3.4.7 (2025-10-08 revision 7a5688e2a2) +PRISM [arm64-darwin25]
  • Rails: 8.1.1
  • Active Admin: 3.4.0
  • Propshaft: 1.3.1
  • dartsass-rails: 0.5.1
  • OS: macOS (darwin 25.1.0)

Gemfile Configuration

gem"rails","~> 8.1.1"gem"propshaft"# Rails 8 default asset pipelinegem"dartsass-rails"gem"activeadmin","~> 3.4"

error logs:

ActionView::Template::Error (The asset 'active_admin.css' was not found in the load path.)Caused by: Propshaft::MissingAssetError (The asset 'active_admin.css' was not found in the load path.)Information for: ActionView::Template::Error (The asset 'active_admin.css' was not found in the load path.):    1: # frozen_string_literal: true    2: insert_tag active_admin_application.view_factory["page"]propshaft (1.3.1) lib/propshaft/helper.rb:50:in 'Propshaft::Helper#compute_asset_path'actionview (8.1.1) lib/action_view/helpers/asset_url_helper.rb:204:in 'ActionView::Helpers::AssetUrlHelper#asset_path'actionview (8.1.1) lib/action_view/helpers/asset_url_helper.rb:349:in 'ActionView::Helpers::AssetUrlHelper#stylesheet_path'actionview (8.1.1) lib/action_view/helpers/asset_tag_helper.rb:218:in 'block in ActionView::Helpers::AssetTagHelper#stylesheet_link_tag'actionview (8.1.1) lib/action_view/helpers/asset_tag_helper.rb:217:in 'Array#map'actionview (8.1.1) lib/action_view/helpers/asset_tag_helper.rb:217:in 'ActionView::Helpers::AssetTagHelper#stylesheet_link_tag'propshaft (1.3.1) lib/propshaft/helper.rb:83:in 'block in Propshaft::Helper#stylesheet_link_tag'propshaft (1.3.1) lib/propshaft/helper.rb:127:in 'block in Propshaft::Helper#_build_asset_tags'propshaft (1.3.1) lib/propshaft/helper.rb:125:in 'Array#map'propshaft (1.3.1) lib/propshaft/helper.rb:125:in 'Propshaft::Helper#_build_asset_tags'propshaft (1.3.1) lib/propshaft/helper.rb:83:in 'Propshaft::Helper#stylesheet_link_tag'arbre (1.7.0) lib/arbre/element.rb:183:in 'Arbre::Element#method_missing'activeadmin (3.4.0) lib/active_admin/views/pages/base.rb:33:in 'block (2 levels) in ActiveAdmin::Views::Pages::Base#build_active_admin_head'activeadmin (3.4.0) lib/active_admin/views/pages/base.rb:32:in 'Hash#each'activeadmin (3.4.0) lib/active_admin/views/pages/base.rb:32:in 'block in ActiveAdmin::Views::Pages::Base#build_active_admin_head'arbre (1.7.0) lib/arbre/context.rb:94:in 'Arbre::Context#with_current_arbre_element'arbre (1.7.0) lib/arbre/element/builder_methods.rb:50:in 'Arbre::Element::BuilderMethods#with_current_arbre_element'activeadmin (3.4.0) lib/active_admin/views/pages/base.rb:27:in 'ActiveAdmin::Views::Pages::Base#build_active_admin_head'activeadmin (3.4.0) lib/active_admin/views/pages/base.rb:9:in 'ActiveAdmin::Views::Pages::Base#build'arbre (1.7.0) lib/arbre/element/builder_methods.rb:31:in 'block in Arbre::Element::BuilderMethods#build_tag'arbre (1.7.0) lib/arbre/context.rb:94:in 'Arbre::Context#with_current_arbre_element'arbre (1.7.0) lib/arbre/element/builder_methods.rb:27:in 'Arbre::Element::BuilderMethods#build_tag'arbre (1.7.0) lib/arbre/element/builder_methods.rb:40:in 'Arbre::Element::BuilderMethods#insert_tag'activeadmin (3.4.0) app/views/active_admin/page/index.html.arb:3arbre (1.7.0) lib/arbre/context.rb:47:in 'BasicObject#instance_eval'arbre (1.7.0) lib/arbre/context.rb:47:in 'Arbre::Context#initialize'activeadmin (3.4.0) app/views/active_admin/page/index.html.arb:1:in 'Class#new'activeadmin (3.4.0) app/views/active_admin/page/index.html.arb:1actionview (8.1.1) lib/action_view/base.rb:281:in 'Kernel#public_send'actionview (8.1.1) lib/action_view/base.rb:281:in 'ActionView::Base#_run'actionview (8.1.1) lib/action_view/template.rb:284:in 'block in ActionView::Template#render'activesupport (8.1.1) lib/active_support/notifications.rb:212:in 'ActiveSupport::Notifications.instrument'actionview (8.1.1) lib/action_view/template.rb:583:in 'ActionView::Template#instrument_render_template'actionview (8.1.1) lib/action_view/template.rb:272:in 'ActionView::Template#render'actionview (8.1.1) lib/action_view/renderer/template_renderer.rb:66:in 'block (2 levels) in ActionView::TemplateRenderer#render_template'activesupport (8.1.1) lib/active_support/notifications.rb:210:in 'block in ActiveSupport::Notifications.instrument'activesupport (8.1.1) lib/active_support/notifications/instrumenter.rb:58:in 'ActiveSupport::Notifications::Instrumenter#instrument'activesupport (8.1.1) lib/active_support/notifications.rb:210:in 'ActiveSupport::Notifications.instrument'actionview (8.1.1) lib/action_view/renderer/template_renderer.rb:60:in 'block in ActionView::TemplateRenderer#render_template'actionview (8.1.1) lib/action_view/renderer/template_renderer.rb:80:in 'ActionView::TemplateRenderer#render_with_layout'actionview (8.1.1) lib/action_view/renderer/template_renderer.rb:59:in 'ActionView::TemplateRenderer#render_template'actionview (8.1.1) lib/action_view/renderer/template_renderer.rb:11:in 'ActionView::TemplateRenderer#render'actionview (8.1.1) lib/action_view/renderer/renderer.rb:58:in 'ActionView::Renderer#render_template_to_object'actionview (8.1.1) lib/action_view/renderer/renderer.rb:31:in 'ActionView::Renderer#render_to_object'actionview (8.1.1) lib/action_view/rendering.rb:136:in 'block in ActionView::Rendering#_render_template'actionview (8.1.1) lib/action_view/base.rb:308:in 'ActionView::Base#in_rendering_context'actionview (8.1.1) lib/action_view/rendering.rb:135:in 'ActionView::Rendering#_render_template'actionpack (8.1.1) lib/action_controller/metal/streaming.rb:179:in 'ActionController::Streaming#_render_template'actionview (8.1.1) lib/action_view/rendering.rb:122:in 'ActionView::Rendering#render_to_body'actionpack (8.1.1) lib/action_controller/metal/rendering.rb:192:in 'ActionController::Rendering#render_to_body'actionpack (8.1.1) lib/action_controller/metal/renderers.rb:155:in 'ActionController::Renderers#render_to_body'actionpack (8.1.1) lib/abstract_controller/rendering.rb:28:in 'AbstractController::Rendering#render'actionpack (8.1.1) lib/action_controller/metal/rendering.rb:173:in 'ActionController::Rendering#render'actionpack (8.1.1) lib/action_controller/metal/instrumentation.rb:31:in 'block (2 levels) in ActionController::Instrumentation#render'activesupport (8.1.1) lib/active_support/benchmark.rb:17:in 'ActiveSupport::Benchmark.realtime'actionpack (8.1.1) lib/action_controller/metal/instrumentation.rb:31:in 'block in ActionController::Instrumentation#render'actionpack (8.1.1) lib/action_controller/metal/instrumentation.rb:100:in 'ActionController::Instrumentation#cleanup_view_runtime'activerecord (8.1.1) lib/active_record/railties/controller_runtime.rb:48:in 'ActiveRecord::Railties::ControllerRuntime#cleanup_view_runtime'actionpack (8.1.1) lib/action_controller/metal/instrumentation.rb:30:in 'ActionController::Instrumentation#render'activeadmin (3.4.0) lib/active_admin/page_controller.rb:15:in 'ActiveAdmin::PageController#index'actionpack (8.1.1) lib/action_controller/metal/basic_implicit_render.rb:8:in 'ActionController::BasicImplicitRender#send_action'actionpack (8.1.1) lib/abstract_controller/base.rb:221:in 'AbstractController::Base#process_action'actionpack (8.1.1) lib/action_controller/metal/rendering.rb:199:in 'ActionController::Rendering#process_action'actionpack (8.1.1) lib/abstract_controller/callbacks.rb:267:in 'block in AbstractController::Callbacks#process_action'activesupport (8.1.1) lib/active_support/callbacks.rb:121:in 'block in ActiveSupport::Callbacks#run_callbacks'turbo-rails (2.0.20) lib/turbo-rails.rb:24:in 'Turbo.with_request_id'turbo-rails (2.0.20) app/controllers/concerns/turbo/request_id_tracking.rb:10:in 'Turbo::RequestIdTracking#turbo_tracking_request_id'activesupport (8.1.1) lib/active_support/callbacks.rb:130:in 'block in ActiveSupport::Callbacks#run_callbacks'actiontext (8.1.1) lib/action_text/rendering.rb:24:in 'ActionText::Rendering::ClassMethods#with_renderer'actiontext (8.1.1) lib/action_text/engine.rb:72:in 'block (4 levels) in <class:Engine>'activesupport (8.1.1) lib/active_support/callbacks.rb:130:in 'BasicObject#instance_exec'activesupport (8.1.1) lib/active_support/callbacks.rb:130:in 'block in ActiveSupport::Callbacks#run_callbacks'activesupport (8.1.1) lib/active_support/callbacks.rb:141:in 'ActiveSupport::Callbacks#run_callbacks'actionpack (8.1.1) lib/abstract_controller/callbacks.rb:266:in 'AbstractController::Callbacks#process_action'actionpack (8.1.1) lib/action_controller/metal/rescue.rb:36:in 'ActionController::Rescue#process_action'actionpack (8.1.1) lib/action_controller/metal/instrumentation.rb:76:in 'block in ActionController::Instrumentation#process_action'activesupport (8.1.1) lib/active_support/notifications.rb:210:in 'block in ActiveSupport::Notifications.instrument'activesupport (8.1.1) lib/active_support/notifications/instrumenter.rb:58:in 'ActiveSupport::Notifications::Instrumenter#instrument'activesupport (8.1.1) lib/active_support/notifications.rb:210:in 'ActiveSupport::Notifications.instrument'actionpack (8.1.1) lib/action_controller/metal/instrumentation.rb:75:in 'ActionController::Instrumentation#process_action'actionpack (8.1.1) lib/action_controller/metal/params_wrapper.rb:259:in 'ActionController::ParamsWrapper#process_action'activerecord (8.1.1) lib/active_record/railties/controller_runtime.rb:39:in 'ActiveRecord::Railties::ControllerRuntime#process_action'actionpack (8.1.1) lib/abstract_controller/base.rb:154:in 'AbstractController::Base#process'actionview (8.1.1) lib/action_view/rendering.rb:40:in 'ActionView::Rendering#process'actionpack (8.1.1) lib/action_controller/metal.rb:252:in 'ActionController::Metal#dispatch'actionpack (8.1.1) lib/action_controller/metal.rb:335:in 'ActionController::Metal.dispatch'actionpack (8.1.1) lib/action_dispatch/routing/route_set.rb:65:in 'ActionDispatch::Routing::RouteSet::Dispatcher#dispatch'actionpack (8.1.1) lib/action_dispatch/routing/route_set.rb:50:in 'ActionDispatch::Routing::RouteSet::Dispatcher#serve'actionpack (8.1.1) lib/action_dispatch/routing/mapper.rb:32:in 'block in <class:Constraints>'actionpack (8.1.1) lib/action_dispatch/routing/mapper.rb:62:in 'ActionDispatch::Routing::Mapper::Constraints#serve'actionpack (8.1.1) lib/action_dispatch/journey/router.rb:35:in 'block in ActionDispatch::Journey::Router#serve'actionpack (8.1.1) lib/action_dispatch/journey/router.rb:86:in 'block in ActionDispatch::Journey::Router#recognize'actionpack (8.1.1) lib/action_dispatch/journey/router.rb:66:in 'Array#each'actionpack (8.1.1) lib/action_dispatch/journey/router.rb:66:in 'ActionDispatch::Journey::Router#recognize'actionpack (8.1.1) lib/action_dispatch/journey/router.rb:31:in 'ActionDispatch::Journey::Router#serve'actionpack (8.1.1) lib/action_dispatch/routing/route_set.rb:906:in 'ActionDispatch::Routing::RouteSet#call'railties (8.1.1) lib/rails/engine/lazy_route_set.rb:60:in 'Rails::Engine::LazyRouteSet#call'rack-attack (6.8.0) lib/rack/attack.rb:129:in 'Rack::Attack#call'warden (1.2.9) lib/warden/manager.rb:36:in 'block in Warden::Manager#call'warden (1.2.9) lib/warden/manager.rb:34:in 'Kernel#catch'warden (1.2.9) lib/warden/manager.rb:34:in 'Warden::Manager#call'rack (3.2.4) lib/rack/tempfile_reaper.rb:20:in 'Rack::TempfileReaper#call'rack (3.2.4) lib/rack/etag.rb:29:in 'Rack::ETag#call'rack (3.2.4) lib/rack/conditional_get.rb:31:in 'Rack::ConditionalGet#call'rack (3.2.4) lib/rack/head.rb:15:in 'Rack::Head#call'actionpack (8.1.1) lib/action_dispatch/http/content_security_policy.rb:38:in 'ActionDispatch::ContentSecurityPolicy::Middleware#call'rack-session (2.1.1) lib/rack/session/abstract/id.rb:274:in 'Rack::Session::Abstract::Persisted#context'rack-session (2.1.1) lib/rack/session/abstract/id.rb:268:in 'Rack::Session::Abstract::Persisted#call'actionpack (8.1.1) lib/action_dispatch/middleware/cookies.rb:708:in 'ActionDispatch::Cookies#call'activerecord (8.1.1) lib/active_record/migration.rb:671:in 'ActiveRecord::Migration::CheckPending#call'actionpack (8.1.1) lib/action_dispatch/middleware/callbacks.rb:31:in 'block in ActionDispatch::Callbacks#call'activesupport (8.1.1) lib/active_support/callbacks.rb:101:in 'ActiveSupport::Callbacks#run_callbacks'actionpack (8.1.1) lib/action_dispatch/middleware/callbacks.rb:30:in 'ActionDispatch::Callbacks#call'actionpack (8.1.1) lib/action_dispatch/middleware/executor.rb:20:in 'ActionDispatch::Executor#call'actionpack (8.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in 'ActionDispatch::ActionableExceptions#call'actionpack (8.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:31:in 'ActionDispatch::DebugExceptions#call'web-console (4.2.1) lib/web_console/middleware.rb:132:in 'WebConsole::Middleware#call_app'web-console (4.2.1) lib/web_console/middleware.rb:28:in 'block in WebConsole::Middleware#call'web-console (4.2.1) lib/web_console/middleware.rb:17:in 'Kernel#catch'web-console (4.2.1) lib/web_console/middleware.rb:17:in 'WebConsole::Middleware#call'actionpack (8.1.1) lib/action_dispatch/middleware/show_exceptions.rb:32:in 'ActionDispatch::ShowExceptions#call'railties (8.1.1) lib/rails/rack/logger.rb:41:in 'Rails::Rack::Logger#call_app'railties (8.1.1) lib/rails/rack/logger.rb:29:in 'Rails::Rack::Logger#call'propshaft (1.3.1) lib/propshaft/quiet_assets.rb:11:in 'Propshaft::QuietAssets#call'actionpack (8.1.1) lib/action_dispatch/middleware/remote_ip.rb:98:in 'ActionDispatch::RemoteIp#call'actionpack (8.1.1) lib/action_dispatch/middleware/request_id.rb:34:in 'ActionDispatch::RequestId#call'rack (3.2.4) lib/rack/method_override.rb:28:in 'Rack::MethodOverride#call'rack (3.2.4) lib/rack/runtime.rb:24:in 'Rack::Runtime#call'actionpack (8.1.1) lib/action_dispatch/middleware/server_timing.rb:61:in 'block in ActionDispatch::ServerTiming#call'actionpack (8.1.1) lib/action_dispatch/middleware/server_timing.rb:26:in 'ActionDispatch::ServerTiming::Subscriber#collect_events'actionpack (8.1.1) lib/action_dispatch/middleware/server_timing.rb:60:in 'ActionDispatch::ServerTiming#call'actionpack (8.1.1) lib/action_dispatch/middleware/executor.rb:20:in 'ActionDispatch::Executor#call'propshaft (1.3.1) lib/propshaft/server.rb:37:in 'Propshaft::Server#call'actionpack (8.1.1) lib/action_dispatch/middleware/static.rb:27:in 'ActionDispatch::Static#call'rack (3.2.4) lib/rack/sendfile.rb:131:in 'Rack::Sendfile#call'actionpack (8.1.1) lib/action_dispatch/middleware/host_authorization.rb:143:in 'ActionDispatch::HostAuthorization#call'railties (8.1.1) lib/rails/engine.rb:534:in 'Rails::Engine#call'puma (7.1.0) lib/puma/configuration.rb:300:in 'Puma::Configuration::ConfigMiddleware#call'puma (7.1.0) lib/puma/request.rb:101:in 'block in Puma::Request#handle_request'puma (7.1.0) lib/puma/thread_pool.rb:355:in 'Puma::ThreadPool#with_force_shutdown'puma (7.1.0) lib/puma/request.rb:100:in 'Puma::Request#handle_request'puma (7.1.0) lib/puma/server.rb:503:in 'Puma::Server#process_client'puma (7.1.0) lib/puma/server.rb:262:in 'block in Puma::Server#run'puma (7.1.0) lib/puma/thread_pool.rb:182:in 'block in Puma::ThreadPool#spawn_thread'Information for cause: Propshaft::MissingAssetError (The asset 'active_admin.css' was not found in the load path.):propshaft (1.3.1) lib/propshaft/helper.rb:50:in 'Propshaft::Helper#compute_asset_path'actionview (8.1.1) lib/action_view/helpers/asset_url_helper.rb:204:in 'ActionView::Helpers::AssetUrlHelper#asset_path'actionview (8.1.1) lib/action_view/helpers/asset_url_helper.rb:349:in 'ActionView::Helpers::AssetUrlHelper#stylesheet_path'actionview (8.1.1) lib/action_view/helpers/asset_tag_helper.rb:218:in 'block in ActionView::Helpers::AssetTagHelper#stylesheet_link_tag'actionview (8.1.1) lib/action_view/helpers/asset_tag_helper.rb:217:in 'Array#map'actionview (8.1.1) lib/action_view/helpers/asset_tag_helper.rb:217:in 'ActionView::Helpers::AssetTagHelper#stylesheet_link_tag'propshaft (1.3.1) lib/propshaft/helper.rb:83:in 'block in Propshaft::Helper#stylesheet_link_tag'propshaft (1.3.1) lib/propshaft/helper.rb:127:in 'block in Propshaft::Helper#_build_asset_tags'propshaft (1.3.1) lib/propshaft/helper.rb:125:in 'Array#map'propshaft (1.3.1) lib/propshaft/helper.rb:125:in 'Propshaft::Helper#_build_asset_tags'propshaft (1.3.1) lib/propshaft/helper.rb:83:in 'Propshaft::Helper#stylesheet_link_tag'arbre (1.7.0) lib/arbre/element.rb:183:in 'Arbre::Element#method_missing'activeadmin (3.4.0) lib/active_admin/views/pages/base.rb:33:in 'block (2 levels) in ActiveAdmin::Views::Pages::Base#build_active_admin_head'activeadmin (3.4.0) lib/active_admin/views/pages/base.rb:32:in 'Hash#each'activeadmin (3.4.0) lib/active_admin/views/pages/base.rb:32:in 'block in ActiveAdmin::Views::Pages::Base#build_active_admin_head'arbre (1.7.0) lib/arbre/context.rb:94:in 'Arbre::Context#with_current_arbre_element'arbre (1.7.0) lib/arbre/element/builder_methods.rb:50:in 'Arbre::Element::BuilderMethods#with_current_arbre_element'activeadmin (3.4.0) lib/active_admin/views/pages/base.rb:27:in 'ActiveAdmin::Views::Pages::Base#build_active_admin_head'activeadmin (3.4.0) lib/active_admin/views/pages/base.rb:9:in 'ActiveAdmin::Views::Pages::Base#build'arbre (1.7.0) lib/arbre/element/builder_methods.rb:31:in 'block in Arbre::Element::BuilderMethods#build_tag'arbre (1.7.0) lib/arbre/context.rb:94:in 'Arbre::Context#with_current_arbre_element'arbre (1.7.0) lib/arbre/element/builder_methods.rb:27:in 'Arbre::Element::BuilderMethods#build_tag'arbre (1.7.0) lib/arbre/element/builder_methods.rb:40:in 'Arbre::Element::BuilderMethods#insert_tag'activeadmin (3.4.0) app/views/active_admin/page/index.html.arb:3arbre (1.7.0) lib/arbre/context.rb:47:in 'BasicObject#instance_eval'arbre (1.7.0) lib/arbre/context.rb:47:in 'Arbre::Context#initialize'activeadmin (3.4.0) app/views/active_admin/page/index.html.arb:1:in 'Class#new'activeadmin (3.4.0) app/views/active_admin/page/index.html.arb:1actionview (8.1.1) lib/action_view/base.rb:281:in 'Kernel#public_send'actionview (8.1.1) lib/action_view/base.rb:281:in 'ActionView::Base#_run'actionview (8.1.1) lib/action_view/template.rb:284:in 'block in ActionView::Template#render'activesupport (8.1.1) lib/active_support/notifications.rb:212:in 'ActiveSupport::Notifications.instrument'actionview (8.1.1) lib/action_view/template.rb:583:in 'ActionView::Template#instrument_render_template'actionview (8.1.1) lib/action_view/template.rb:272:in 'ActionView::Template#render'actionview (8.1.1) lib/action_view/renderer/template_renderer.rb:66:in 'block (2 levels) in ActionView::TemplateRenderer#render_template'activesupport (8.1.1) lib/active_support/notifications.rb:210:in 'block in ActiveSupport::Notifications.instrument'activesupport (8.1.1) lib/active_support/notifications/instrumenter.rb:58:in 'ActiveSupport::Notifications::Instrumenter#instrument'activesupport (8.1.1) lib/active_support/notifications.rb:210:in 'ActiveSupport::Notifications.instrument'actionview (8.1.1) lib/action_view/renderer/template_renderer.rb:60:in 'block in ActionView::TemplateRenderer#render_template'actionview (8.1.1) lib/action_view/renderer/template_renderer.rb:80:in 'ActionView::TemplateRenderer#render_with_layout'actionview (8.1.1) lib/action_view/renderer/template_renderer.rb:59:in 'ActionView::TemplateRenderer#render_template'actionview (8.1.1) lib/action_view/renderer/template_renderer.rb:11:in 'ActionView::TemplateRenderer#render'actionview (8.1.1) lib/action_view/renderer/renderer.rb:58:in 'ActionView::Renderer#render_template_to_object'actionview (8.1.1) lib/action_view/renderer/renderer.rb:31:in 'ActionView::Renderer#render_to_object'actionview (8.1.1) lib/action_view/rendering.rb:136:in 'block in ActionView::Rendering#_render_template'actionview (8.1.1) lib/action_view/base.rb:308:in 'ActionView::Base#in_rendering_context'actionview (8.1.1) lib/action_view/rendering.rb:135:in 'ActionView::Rendering#_render_template'actionpack (8.1.1) lib/action_controller/metal/streaming.rb:179:in 'ActionController::Streaming#_render_template'actionview (8.1.1) lib/action_view/rendering.rb:122:in 'ActionView::Rendering#render_to_body'actionpack (8.1.1) lib/action_controller/metal/rendering.rb:192:in 'ActionController::Rendering#render_to_body'actionpack (8.1.1) lib/action_controller/metal/renderers.rb:155:in 'ActionController::Renderers#render_to_body'actionpack (8.1.1) lib/abstract_controller/rendering.rb:28:in 'AbstractController::Rendering#render'actionpack (8.1.1) lib/action_controller/metal/rendering.rb:173:in 'ActionController::Rendering#render'actionpack (8.1.1) lib/action_controller/metal/instrumentation.rb:31:in 'block (2 levels) in ActionController::Instrumentation#render'activesupport (8.1.1) lib/active_support/benchmark.rb:17:in 'ActiveSupport::Benchmark.realtime'actionpack (8.1.1) lib/action_controller/metal/instrumentation.rb:31:in 'block in ActionController::Instrumentation#render'actionpack (8.1.1) lib/action_controller/metal/instrumentation.rb:100:in 'ActionController::Instrumentation#cleanup_view_runtime'activerecord (8.1.1) lib/active_record/railties/controller_runtime.rb:48:in 'ActiveRecord::Railties::ControllerRuntime#cleanup_view_runtime'actionpack (8.1.1) lib/action_controller/metal/instrumentation.rb:30:in 'ActionController::Instrumentation#render'activeadmin (3.4.0) lib/active_admin/page_controller.rb:15:in 'ActiveAdmin::PageController#index'actionpack (8.1.1) lib/action_controller/metal/basic_implicit_render.rb:8:in 'ActionController::BasicImplicitRender#send_action'actionpack (8.1.1) lib/abstract_controller/base.rb:221:in 'AbstractController::Base#process_action'actionpack (8.1.1) lib/action_controller/metal/rendering.rb:199:in 'ActionController::Rendering#process_action'actionpack (8.1.1) lib/abstract_controller/callbacks.rb:267:in 'block in AbstractController::Callbacks#process_action'activesupport (8.1.1) lib/active_support/callbacks.rb:121:in 'block in ActiveSupport::Callbacks#run_callbacks'turbo-rails (2.0.20) lib/turbo-rails.rb:24:in 'Turbo.with_request_id'turbo-rails (2.0.20) app/controllers/concerns/turbo/request_id_tracking.rb:10:in 'Turbo::RequestIdTracking#turbo_tracking_request_id'activesupport (8.1.1) lib/active_support/callbacks.rb:130:in 'block in ActiveSupport::Callbacks#run_callbacks'actiontext (8.1.1) lib/action_text/rendering.rb:24:in 'ActionText::Rendering::ClassMethods#with_renderer'actiontext (8.1.1) lib/action_text/engine.rb:72:in 'block (4 levels) in <class:Engine>'activesupport (8.1.1) lib/active_support/callbacks.rb:130:in 'BasicObject#instance_exec'activesupport (8.1.1) lib/active_support/callbacks.rb:130:in 'block in ActiveSupport::Callbacks#run_callbacks'activesupport (8.1.1) lib/active_support/callbacks.rb:141:in 'ActiveSupport::Callbacks#run_callbacks'actionpack (8.1.1) lib/abstract_controller/callbacks.rb:266:in 'AbstractController::Callbacks#process_action'actionpack (8.1.1) lib/action_controller/metal/rescue.rb:36:in 'ActionController::Rescue#process_action'actionpack (8.1.1) lib/action_controller/metal/instrumentation.rb:76:in 'block in ActionController::Instrumentation#process_action'activesupport (8.1.1) lib/active_support/notifications.rb:210:in 'block in ActiveSupport::Notifications.instrument'activesupport (8.1.1) lib/active_support/notifications/instrumenter.rb:58:in 'ActiveSupport::Notifications::Instrumenter#instrument'activesupport (8.1.1) lib/active_support/notifications.rb:210:in 'ActiveSupport::Notifications.instrument'actionpack (8.1.1) lib/action_controller/metal/instrumentation.rb:75:in 'ActionController::Instrumentation#process_action'actionpack (8.1.1) lib/action_controller/metal/params_wrapper.rb:259:in 'ActionController::ParamsWrapper#process_action'activerecord (8.1.1) lib/active_record/railties/controller_runtime.rb:39:in 'ActiveRecord::Railties::ControllerRuntime#process_action'actionpack (8.1.1) lib/abstract_controller/base.rb:154:in 'AbstractController::Base#process'actionview (8.1.1) lib/action_view/rendering.rb:40:in 'ActionView::Rendering#process'actionpack (8.1.1) lib/action_controller/metal.rb:252:in 'ActionController::Metal#dispatch'actionpack (8.1.1) lib/action_controller/metal.rb:335:in 'ActionController::Metal.dispatch'actionpack (8.1.1) lib/action_dispatch/routing/route_set.rb:65:in 'ActionDispatch::Routing::RouteSet::Dispatcher#dispatch'actionpack (8.1.1) lib/action_dispatch/routing/route_set.rb:50:in 'ActionDispatch::Routing::RouteSet::Dispatcher#serve'actionpack (8.1.1) lib/action_dispatch/routing/mapper.rb:32:in 'block in <class:Constraints>'actionpack (8.1.1) lib/action_dispatch/routing/mapper.rb:62:in 'ActionDispatch::Routing::Mapper::Constraints#serve'actionpack (8.1.1) lib/action_dispatch/journey/router.rb:35:in 'block in ActionDispatch::Journey::Router#serve'actionpack (8.1.1) lib/action_dispatch/journey/router.rb:86:in 'block in ActionDispatch::Journey::Router#recognize'actionpack (8.1.1) lib/action_dispatch/journey/router.rb:66:in 'Array#each'actionpack (8.1.1) lib/action_dispatch/journey/router.rb:66:in 'ActionDispatch::Journey::Router#recognize'actionpack (8.1.1) lib/action_dispatch/journey/router.rb:31:in 'ActionDispatch::Journey::Router#serve'actionpack (8.1.1) lib/action_dispatch/routing/route_set.rb:906:in 'ActionDispatch::Routing::RouteSet#call'railties (8.1.1) lib/rails/engine/lazy_route_set.rb:60:in 'Rails::Engine::LazyRouteSet#call'rack-attack (6.8.0) lib/rack/attack.rb:129:in 'Rack::Attack#call'warden (1.2.9) lib/warden/manager.rb:36:in 'block in Warden::Manager#call'warden (1.2.9) lib/warden/manager.rb:34:in 'Kernel#catch'warden (1.2.9) lib/warden/manager.rb:34:in 'Warden::Manager#call'rack (3.2.4) lib/rack/tempfile_reaper.rb:20:in 'Rack::TempfileReaper#call'rack (3.2.4) lib/rack/etag.rb:29:in 'Rack::ETag#call'rack (3.2.4) lib/rack/conditional_get.rb:31:in 'Rack::ConditionalGet#call'rack (3.2.4) lib/rack/head.rb:15:in 'Rack::Head#call'actionpack (8.1.1) lib/action_dispatch/http/content_security_policy.rb:38:in 'ActionDispatch::ContentSecurityPolicy::Middleware#call'rack-session (2.1.1) lib/rack/session/abstract/id.rb:274:in 'Rack::Session::Abstract::Persisted#context'rack-session (2.1.1) lib/rack/session/abstract/id.rb:268:in 'Rack::Session::Abstract::Persisted#call'actionpack (8.1.1) lib/action_dispatch/middleware/cookies.rb:708:in 'ActionDispatch::Cookies#call'activerecord (8.1.1) lib/active_record/migration.rb:671:in 'ActiveRecord::Migration::CheckPending#call'actionpack (8.1.1) lib/action_dispatch/middleware/callbacks.rb:31:in 'block in ActionDispatch::Callbacks#call'activesupport (8.1.1) lib/active_support/callbacks.rb:101:in 'ActiveSupport::Callbacks#run_callbacks'actionpack (8.1.1) lib/action_dispatch/middleware/callbacks.rb:30:in 'ActionDispatch::Callbacks#call'actionpack (8.1.1) lib/action_dispatch/middleware/executor.rb:20:in 'ActionDispatch::Executor#call'actionpack (8.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in 'ActionDispatch::ActionableExceptions#call'actionpack (8.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:31:in 'ActionDispatch::DebugExceptions#call'web-console (4.2.1) lib/web_console/middleware.rb:132:in 'WebConsole::Middleware#call_app'web-console (4.2.1) lib/web_console/middleware.rb:28:in 'block in WebConsole::Middleware#call'web-console (4.2.1) lib/web_console/middleware.rb:17:in 'Kernel#catch'web-console (4.2.1) lib/web_console/middleware.rb:17:in 'WebConsole::Middleware#call'actionpack (8.1.1) lib/action_dispatch/middleware/show_exceptions.rb:32:in 'ActionDispatch::ShowExceptions#call'railties (8.1.1) lib/rails/rack/logger.rb:41:in 'Rails::Rack::Logger#call_app'railties (8.1.1) lib/rails/rack/logger.rb:29:in 'Rails::Rack::Logger#call'propshaft (1.3.1) lib/propshaft/quiet_assets.rb:11:in 'Propshaft::QuietAssets#call'actionpack (8.1.1) lib/action_dispatch/middleware/remote_ip.rb:98:in 'ActionDispatch::RemoteIp#call'actionpack (8.1.1) lib/action_dispatch/middleware/request_id.rb:34:in 'ActionDispatch::RequestId#call'rack (3.2.4) lib/rack/method_override.rb:28:in 'Rack::MethodOverride#call'rack (3.2.4) lib/rack/runtime.rb:24:in 'Rack::Runtime#call'actionpack (8.1.1) lib/action_dispatch/middleware/server_timing.rb:61:in 'block in ActionDispatch::ServerTiming#call'actionpack (8.1.1) lib/action_dispatch/middleware/server_timing.rb:26:in 'ActionDispatch::ServerTiming::Subscriber#collect_events'actionpack (8.1.1) lib/action_dispatch/middleware/server_timing.rb:60:in 'ActionDispatch::ServerTiming#call'actionpack (8.1.1) lib/action_dispatch/middleware/executor.rb:20:in 'ActionDispatch::Executor#call'propshaft (1.3.1) lib/propshaft/server.rb:37:in 'Propshaft::Server#call'actionpack (8.1.1) lib/action_dispatch/middleware/static.rb:27:in 'ActionDispatch::Static#call'rack (3.2.4) lib/rack/sendfile.rb:131:in 'Rack::Sendfile#call'actionpack (8.1.1) lib/action_dispatch/middleware/host_authorization.rb:143:in 'ActionDispatch::HostAuthorization#call'railties (8.1.1) lib/rails/engine.rb:534:in 'Rails::Engine#call'puma (7.1.0) lib/puma/configuration.rb:300:in 'Puma::Configuration::ConfigMiddleware#call'puma (7.1.0) lib/puma/request.rb:101:in 'block in Puma::Request#handle_request'puma (7.1.0) lib/puma/thread_pool.rb:355:in 'Puma::ThreadPool#with_force_shutdown'puma (7.1.0) lib/puma/request.rb:100:in 'Puma::Request#handle_request'puma (7.1.0) lib/puma/server.rb:503:in 'Puma::Server#process_client'puma (7.1.0) lib/puma/server.rb:262:in 'block in Puma::Server#run'puma (7.1.0) lib/puma/thread_pool.rb:182:in 'block in Puma::ThreadPool#spawn_thread'Started GET "/favicon.ico" for 127.0.0.1 at 2025-11-19 13:52:11 +0800ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
You must be logged in to vote
1 reply
@pallavsharma
Comment options

Hi@tagliala can you please find the possible solution for this version also ?

Comment options

Reference to propshaft, valid for v4:#8298 (comment)

You must be logged in to vote
0 replies
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Category
Help
Labels
None yet
13 participants
@krtschmr@justinperkins@tagliala@Uelb@thomasrossetto@dankmitchell@brcebn@pallavsharma@sptsn@PoroshkinaVV@umairliaqatali@naveed60@NemiSanghvi
Converted from issue

This discussion was converted from issue #8537 on November 12, 2024 16:50.


[8]ページ先頭

©2009-2025 Movatter.jp