Enable serving static files from the public directory in development mode.

This commit is contained in:
Eugene Burmakin 2024-11-01 19:10:20 +01:00
parent cf5ebae5ae
commit 04551d6fbd
3 changed files with 9 additions and 1 deletions

View file

@ -1 +1 @@
0.15.12
0.15.13

View file

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
# 0.15.13 - 2024-11-01
### Changed
- Enable serving static files from the `public` directory in development mode.
# 0.15.12 - 2024-11-01
### Added

View file

@ -35,6 +35,8 @@ Rails.application.configure do
config.cache_store = :redis_cache_store, { url: ENV['REDIS_URL'] }
end
config.public_file_server.enabled = true
# Store uploaded files on the local file system (see config/storage.yml for options).
config.active_storage.service = :local