2023-08-21 01:51:35 -04:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
const devMode = process.env.NODE_ENV === "development";
|
|
|
|
|
</script>
|
|
|
|
|
|
2020-07-07 22:10:28 +03:00
|
|
|
<template>
|
2025-05-06 18:21:41 -04:00
|
|
|
<div style="overflow: hidden; height: 100vh; width: 100%">
|
2023-08-31 16:56:58 -04:00
|
|
|
<div v-if="devMode" style="width: 100%; height: 100%; padding: 16px">
|
2023-08-21 01:51:35 -04:00
|
|
|
<span style="color: white; font-weight: bold">
|
2023-08-31 16:56:58 -04:00
|
|
|
PhotonClient is in development mode so the documentation page will not load. Please recompile in production mode
|
|
|
|
|
with the documentation copied over after a full build.
|
2023-08-21 01:51:35 -04:00
|
|
|
</span>
|
2023-06-09 13:09:41 -04:00
|
|
|
</div>
|
2023-08-31 16:56:58 -04:00
|
|
|
<div v-else style="width: 100%; height: 100%">
|
2023-06-09 13:09:41 -04:00
|
|
|
<!--suppress HtmlUnknownTarget -->
|
2023-08-31 16:56:58 -04:00
|
|
|
<iframe src="docs/index.html" style="overflow: hidden; height: 100%; width: 100%; border: 0" />
|
2023-06-09 13:09:41 -04:00
|
|
|
</div>
|
2020-07-07 22:10:28 +03:00
|
|
|
</div>
|
|
|
|
|
</template>
|