Files
logseq/vite.config.app.ts
2026-04-27 20:00:37 +08:00

11 lines
291 B
TypeScript

import { createShadowBridgeConfig } from './vite.config.shared'
export default createShadowBridgeConfig({
name: 'app',
shadowDir: 'target/app',
externalsEntry: 'target/app-externals.js',
shadowEntry: 'target/app/main.js',
outDir: 'static/js',
outputFile: 'app-externals.js',
})