@restnfeel/agentc-starter-kit
Version:
한국어 기업용 CMS 모듈 - Task Master AI와 함께 빠르게 웹사이트를 구현할 수 있는 재사용 가능한 컴포넌트 시스템
24 lines (21 loc) • 536 B
text/typescript
// This is a placeholder for NextAuth configuration
// In a real implementation, this would contain the actual NextAuth configuration
export const authOptions = {
// NextAuth configuration would go here
// For now, this is just a placeholder to resolve the import error
providers: [],
callbacks: {},
pages: {
signIn: "/admin/login",
},
};
// Mock session type for development
export interface Session {
user: {
id: string;
name?: string;
email?: string;
role?: string;
siteIds?: string[];
};
}