feat: add server side redist patching

This commit is contained in:
DecDuck
2025-08-28 11:14:38 +10:00
parent ca7a89bbcf
commit cf3a458bdf
9 changed files with 218 additions and 71 deletions

View File

@ -0,0 +1,14 @@
<template>
<div>{{ model }}</div>
</template>
<script setup lang="ts">
import type { SerializeObject } from "nitropack";
import type { RedistModel, UserPlatformModel } from "~/prisma/client/models";
type ModelType = SerializeObject<
RedistModel & { platform?: UserPlatformModel }
>;
const model = defineModel<ModelType>({ required: true });
</script>