mirror of
https://github.com/logseq/logseq.git
synced 2026-05-28 14:39:48 +00:00
11 lines
291 B
TypeScript
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',
|
|
})
|