Class: Inertia::Configuration::DevServer
- Inherits:
-
Object
- Object
- Inertia::Configuration::DevServer
- Defined in:
- lib/inertia/configuration.rb
Overview
Stores configuration for the Vite development server.
Instance Attribute Summary collapse
-
#host ⇒ String
The hostname for the Vite dev server (default: "localhost").
-
#port ⇒ Integer
The port for the Vite dev server (default: 5173).
Instance Attribute Details
#host ⇒ String
Returns the hostname for the Vite dev server (default: "localhost").
98 99 100 |
# File 'lib/inertia/configuration.rb', line 98 def host @host end |
#port ⇒ Integer
Returns the port for the Vite dev server (default: 5173).
101 102 103 |
# File 'lib/inertia/configuration.rb', line 101 def port @port end |