mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-28 14:51:57 +03:00
23 lines
445 B
TypeScript
23 lines
445 B
TypeScript
import { resolve } from 'node:path';
|
|
|
|
import react from '@vitejs/plugin-react-swc';
|
|
import { defineConfig } from 'vite';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
build: {
|
|
target: 'ES2022',
|
|
sourcemap: true,
|
|
rollupOptions: {
|
|
input: {
|
|
'suite/provider-status': resolve(
|
|
__dirname,
|
|
'suite',
|
|
'provider-status.html'
|
|
),
|
|
},
|
|
},
|
|
},
|
|
plugins: [react()],
|
|
});
|