# hostinger/3.0.78/vue-frontend/src/router/baseRoutes.ts

Hostinger Tools, version 3.0.78. 25 lines.

- Page: https://pluginprobe.com/plugins/hostinger/3.0.78/code/vue-frontend/src/router/baseRoutes.ts
- Raw: https://pluginprobe.com/plugins/hostinger/3.0.78/raw/vue-frontend/src/router/baseRoutes.ts
- Modified: 2025-09-09T07:18:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/hostinger/3.0.78/code/vue-frontend/src/router/baseRoutes.ts#L10-L20`.

```typescript
import { RouteBase } from "@/types/enums";
import { translate } from "@/utils/helpers";
import Home from "@/views/HostingerTools.vue";

export default [
	{
		path: "/",
		name: RouteBase.HOSTINGER_TOOLS,
		meta: {
			title: translate("routes_tools"),
			headerButton: {
				text: translate("hostinger_tools_open_guide"),
				href: "https://www.hostinger.com/tutorials/how-to-use-hostinger-tools-plugin"
			},
			previewSiteButton: {
				text: translate("hostinger_tools_preview_site")
			},
			editSiteButton: {
				text: translate("hostinger_tools_edit_site")
			}
		},
		component: Home
	}
];

```
