Content is no longer returned in the entries list. A separate endpoint returns plain text content for clipboard copying on demand. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
})
|