elearning/Frontend-Learner/node_modules/nuxt/dist/app/compat/interval.js
2026-01-13 10:48:02 +07:00

11 lines
531 B
JavaScript

import { createError } from "../composables/error.js";
const intervalError = "[nuxt] `setInterval` should not be used on the server. Consider wrapping it with an `onNuxtReady`, `onBeforeMount` or `onMounted` lifecycle hook, or ensure you only call it in the browser by checking `import.meta.client`.";
export const setInterval = import.meta.client ? globalThis.setInterval : () => {
if (import.meta.dev) {
throw createError({
statusCode: 500,
message: intervalError
});
}
console.error(intervalError);
};