mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-16 19:33:11 +02:00
Add prototypes folder to test new functionality in (#6081)
# Description of Changes Add prototypes folder to test new functionality in. This build of the app is spawnable with `npm run dev:prototypes`. Currently just contains a very developer-y chat interface to help us develop & explore the AI backend before we make the frontend for it for real.
This commit is contained in:
@@ -3,7 +3,7 @@ import react from '@vitejs/plugin-react-swc';
|
||||
import tsconfigPaths from 'vite-tsconfig-paths';
|
||||
import { viteStaticCopy } from 'vite-plugin-static-copy';
|
||||
|
||||
const VALID_MODES = ['core', 'proprietary', 'saas', 'desktop'] as const;
|
||||
const VALID_MODES = ['core', 'proprietary', 'saas', 'desktop', 'prototypes'] as const;
|
||||
type BuildMode = typeof VALID_MODES[number];
|
||||
|
||||
const TSCONFIG_MAP: Record<BuildMode, string> = {
|
||||
@@ -11,6 +11,7 @@ const TSCONFIG_MAP: Record<BuildMode, string> = {
|
||||
proprietary: './tsconfig.proprietary.vite.json',
|
||||
saas: './tsconfig.saas.vite.json',
|
||||
desktop: './tsconfig.desktop.vite.json',
|
||||
prototypes: './tsconfig.prototypes.vite.json',
|
||||
};
|
||||
|
||||
export default defineConfig(({ mode }) => {
|
||||
|
||||
Reference in New Issue
Block a user