Initial commit: New MoreminiMore website with fresh design
This commit is contained in:
11
node_modules/astro/dist/environments.js
generated
vendored
Normal file
11
node_modules/astro/dist/environments.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
import { ASTRO_VITE_ENVIRONMENT_NAMES } from "./core/constants.js";
|
||||
function isAstroServerEnvironment(environment) {
|
||||
return environment.name === ASTRO_VITE_ENVIRONMENT_NAMES.ssr || environment.name === ASTRO_VITE_ENVIRONMENT_NAMES.prerender;
|
||||
}
|
||||
function isAstroClientEnvironment(environment) {
|
||||
return environment.name === ASTRO_VITE_ENVIRONMENT_NAMES.client;
|
||||
}
|
||||
export {
|
||||
isAstroClientEnvironment,
|
||||
isAstroServerEnvironment
|
||||
};
|
||||
Reference in New Issue
Block a user