mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2026-03-19 12:13:42 +00:00
20 lines
321 B
TypeScript
20 lines
321 B
TypeScript
import { defineConfig } from 'vite';
|
|
|
|
import baseConfig from '../vite.config';
|
|
|
|
export default defineConfig({
|
|
...baseConfig,
|
|
|
|
root: './playground',
|
|
|
|
publicDir: '../public',
|
|
|
|
base: `${baseConfig.base}/playground`,
|
|
|
|
build: {
|
|
emptyOutDir: false,
|
|
sourcemap: true,
|
|
outDir: '../dist/playground',
|
|
},
|
|
});
|