Initial commit

This commit is contained in:
root
2025-12-23 18:20:45 -05:00
committed by Sebastian Krupinski
commit ef82b32a6d
24 changed files with 4008 additions and 0 deletions

14
src/main.ts Normal file
View File

@@ -0,0 +1,14 @@
import routes from './routes'
import integrations from './integrations'
import type { App as Vue } from 'vue'
// CSS filename injected by vite plugin
export const css = ['__CSS_FILENAME_PLACEHOLDER__']
export { routes, integrations }
export default {
install(app: Vue) {
// Module-specific Vue plugins (if needed)
}
}