educoder/app/controllers/main_controller.rb

7 lines
173 B

class MainController < ApplicationController
skip_before_action :check_sign
def index
render file: 'public/react/build/index.html', :layout => false
end
end