9 lines
274 B
JavaScript
9 lines
274 B
JavaScript
|
|
/**
|
||
|
|
* Main application JavaScript entry point
|
||
|
|
* This file is included on all pages using the main Blade layout
|
||
|
|
*/
|
||
|
|
|
||
|
|
// Import any page-specific modules as needed
|
||
|
|
// The routing module will be loaded separately only on routing pages
|
||
|
|
|
||
|
|
console.log('Lemmy Poster app loaded');
|