From 841977b02e48dc71416aa9d03130305473fc2efb Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Wed, 1 Feb 2023 08:41:27 +0300 Subject: [PATCH] chore: set seed for faker manually --- src/main.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.ts b/src/main.ts index 90c3dfc..5827367 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,5 +1,6 @@ import { createApp } from "vue"; import { createPinia } from "pinia"; +import { faker } from "@faker-js/faker"; import App from "./App.vue"; import router from "./pages/router"; @@ -13,6 +14,8 @@ import { BaseTable, } from "./shared/uikit"; +faker.seed(10); + const pinia = createPinia(); const app = createApp(App);