class ViteRuby::DevServerProxy

Public: Allows to relay asset requests to the Vite development server.

def forward_to_vite_dev_server(env)

def forward_to_vite_dev_server(env)
  rewrite_uri_for_vite(env)
  env['QUERY_STRING'] ||= ''
  env['HTTP_HOST'] = env['HTTP_X_FORWARDED_HOST'] = config.host
  env['HTTP_X_FORWARDED_SERVER'] = config.host_with_port
  env['HTTP_PORT'] = env['HTTP_X_FORWARDED_PORT'] = config.port.to_s
  env['HTTP_X_FORWARDED_PROTO'] = env['HTTP_X_FORWARDED_SCHEME'] = config.protocol
  env['HTTPS'] = env['HTTP_X_FORWARDED_SSL'] = 'off' unless config.https
  env['SCRIPT_NAME'] = ''
end

def initialize(app = nil, options = {})

def initialize(app = nil, options = {})
  @vite_ruby = options.delete(:vite_ruby) || ViteRuby.instance
  options[:streaming] = false if config.mode == 'test' && !options.key?(:streaming)
  super
end

def perform_request(env)

Rack: Intercept asset requests and send them to the Vite server.
def perform_request(env)
  if vite_should_handle?(env) && dev_server_running?
    forward_to_vite_dev_server(env)
    super(env)
  else
    @app.call(env)
  end
end

def rewrite_uri_for_vite(env)

def rewrite_uri_for_vite(env)
  uri = env.fetch('REQUEST_URI') { [env['PATH_INFO'], env['QUERY_STRING']].reject { |str| str.to_s.strip.empty? }.join('?') }
    .sub(HOST_WITH_PORT_REGEX, '/') # Hanami adds the host and port.
    .sub('.ts.js', '.ts') # Hanami's javascript helper always adds the extension.
    .sub(/(\.(?!min|module)\w+)\.css$/, '\1') # Rails' stylesheet_link_tag always adds the extension.
  env['PATH_INFO'], env['QUERY_STRING'] = (env['REQUEST_URI'] = uri).split('?')
end

def vite_asset_url_prefix

def vite_asset_url_prefix
  @vite_asset_url_prefix ||= "/#{ config.public_output_dir }/"
end

def vite_entrypoint?(path)

Internal: We want to avoid checking the filesystem if possible
def vite_entrypoint?(path)
  path.include?('.') &&
    config.resolved_entrypoints_dir.join(path.delete_prefix('/')).file?
end

def vite_should_handle?(env)

def vite_should_handle?(env)
  path = env['PATH_INFO']
  return true if path.start_with?(vite_asset_url_prefix) # Vite asset
  return true if path.start_with?(VITE_DEPENDENCY_PREFIX) # Packages and imports
  return true if vite_entrypoint?(path) # HMR for entrypoint stylesheets and imports does not include the prefix
end