# frozen_string_literal: true require 'f_components/version' require 'f_components/engine' require 'f_components/railtie' if defined?(Rails::Railtie) module FComponents class << self def webpacker @webpacker ||= ::Webpacker::Instance.new( root_path: FComponents::Engine.root, config_path: FComponents::Engine.root.join('config', 'webpacker.yml') ) end end end FC = FComponents