vike
Version:
(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.
9 lines (8 loc) • 313 B
JavaScript
import '../../utils/trackLogs.js'; // should be loaded ASAP
import { assertIsNotBrowser } from '../../utils/assertIsNotBrowser.js';
import { assertIsNotProductionRuntime } from '../../utils/assertSetup.js';
assertEnvCli();
function assertEnvCli() {
assertIsNotBrowser();
assertIsNotProductionRuntime();
}