routie dev init since i didn't adhere to any proper guidance up until now

This commit is contained in:
2026-04-29 22:27:29 -06:00
commit e1dabb71e2
15301 changed files with 3562618 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
/* eslint-disable local-rules/sort-imports */
// Styles
import "./styles/main.css";
// Components
import * as blueprints from "./blueprints/index.js";
import * as components from "./components/index.js";
import * as directives from "./directives/index.js";
import { createVuetify as _createVuetify } from "./framework.js"; // Types
export const createVuetify = (options = {}) => {
return _createVuetify({
components,
directives,
...options
});
};
export const version = "4.0.6";
createVuetify.version = version;
export { blueprints, components, directives };
export * from "./composables/index.js";
//# sourceMappingURL=entry-bundler.js.map