campfire/src/routes/[server]/[account]/+page.js

9 lines
185 B
JavaScript
Raw Normal View History

import { error } from '@sveltejs/kit';
export async function load({ params }) {
return error(404, 'Not Found');
// return {
// account_name: params.account
// };
}