Sha256: 0027893966f57d06a28a60e4c154c27f23bd418247cf7893b864a82fcea11254
Contents?: true
Size: 444 Bytes
Versions: 24
Compression:
Stored size: 444 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true ENV['RAILS_ENV'] ||= ENV['RACK_ENV'] || 'development' ENV['NODE_ENV'] ||= ENV['RAILS_ENV'] == 'development' ? 'development' : 'production' require 'pathname' ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', Pathname.new(__FILE__).realpath) require 'bundler/setup' require 'vite_rails' APP_ROOT = File.expand_path('..', __dir__) Dir.chdir(APP_ROOT) do ViteRails.run(ARGV) end
Version data entries
24 entries across 13 versions & 1 rubygems