feat: NPC system improvements - custom prompt, NSFW, full body generation

This commit is contained in:
Alexej Wolff
2026-05-05 00:11:43 +02:00
parent efd2332875
commit dad5aa47cb
11 changed files with 1860 additions and 43 deletions
+5 -5
View File
@@ -1,8 +1,8 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { readFileSync } from 'fs'
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { readFileSync } from "fs";
const pkg = JSON.parse(readFileSync('./package.json', 'utf-8'))
const pkg = JSON.parse(readFileSync("./package.json", "utf-8"));
// https://vite.dev/config/
export default defineConfig({
@@ -10,4 +10,4 @@ export default defineConfig({
define: {
__APP_VERSION__: JSON.stringify(pkg.version),
},
})
});