mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-19 09:49:11 -05:00
* Layout initial * Add FillRosterSection component * Move tournaments to feature folder * Refactor Button props * SubmitButton * Register action * Identifier -> Id * Invite link via nanoid * Team info submit * Enter tiebreaker map list UI * Invite members to tournament team initial * Show banner if joined a team not captain of * Add back teams page * Change team roster size color when good * Delete tournament team member
21 lines
731 B
JavaScript
21 lines
731 B
JavaScript
/**
|
|
* @type {import('@remix-run/dev').AppConfig}
|
|
*/
|
|
module.exports = {
|
|
ignoredRouteFiles: ["**/.*", "**/*.json", "**/components/*"],
|
|
cacheDirectory: process.env.NODE_ENV === "test" ? ".cache-test" : undefined,
|
|
routes: async (defineRoutes) => {
|
|
return defineRoutes((route) => {
|
|
route("/to/:id", "features/tournament/routes/to.$id.tsx", () => {
|
|
route("/to/:id", "features/tournament/routes/to.$id.index.tsx");
|
|
route(
|
|
"/to/:id/register",
|
|
"features/tournament/routes/to.$id.register.tsx"
|
|
);
|
|
route("/to/:id/teams", "features/tournament/routes/to.$id.teams.tsx");
|
|
route("/to/:id/join", "features/tournament/routes/to.$id.join.tsx");
|
|
});
|
|
});
|
|
},
|
|
};
|