Files
AFFiNE-Mirror/packages/theme/vite.config.ts
2023-05-04 23:29:32 -05:00

26 lines
622 B
TypeScript

import { resolve } from 'node:path';
import { vanillaExtractPlugin } from '@vanilla-extract/vite-plugin';
import { fileURLToPath } from 'url';
import { defineConfig } from 'vite';
import dts from 'vite-plugin-dts';
const __dirname = fileURLToPath(new URL('.', import.meta.url));
export default defineConfig({
build: {
terserOptions: {
ecma: 2020,
},
sourcemap: true,
lib: {
entry: {
index: resolve(__dirname, 'src/index.ts'),
css: resolve(__dirname, 'src/index.css.ts'),
},
name: 'ToEverythingTheme',
},
},
plugins: [dts(), vanillaExtractPlugin()],
});