dev-credit
Version:
Add essential developer credits (4 meta tags) to Next.js projects - Published by Softq Web Solutions
30 lines (26 loc) • 1.08 kB
JavaScript
/**
* dev-credit/auto - Zero-config import for meta-tags only
* This module provides the same developer credit data without any console output
* @author Himangshu Mishra <contact@mishra.codes>
* @website https://mishra.codes
* @publisher Softq Web Solutions - softq.live
*/
const CREDIT_DATA = {
developer: "Himangshu Mishra",
website: "https://mishra.codes",
email: "contact@mishra.codes"
};
/**
* This module is imported for compatibility but does not perform any console operations.
* All developer attribution is handled through essential meta tags (4 only) in the HTML head section.
*
* To add developer credits to your Next.js project:
* 1. Import this module: import "dev-credit/auto"
* 2. Use withDevMeta() in your metadata: export const metadata = withDevMeta()
*
* Published by Softq Web Solutions - softq.live
*/
// No console output - credits are only in meta tags
// This ensures clean browser console while maintaining attribution in HTML
// Export data for potential future use
export { CREDIT_DATA };