import React from "react"; import ContinueButton from "../components/mainInput/ContinueButton"; import { useNavigate } from "react-router-dom"; function MigrationPage() { const navigate = useNavigate(); return (

Migration to config.json

Continue now uses a .json config file. We hope that this takes the guesswork out of setting up.

Your configuration should have been automatically migrated, but we recommend double-checking that everything looks correct.

For a summary of what changed and examples of config.json, please see the{" "} migration walkthrough , and if you have any questions please reach out to us on{" "} Discord.

Note: If you are running the server manually and have not updated the server, this message does not apply. { navigate("/"); }} disabled={false} />
); } export default MigrationPage;