mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
18 lines
405 B
TypeScript
18 lines
405 B
TypeScript
import react from '@vitejs/plugin-react';
|
|
import { defineConfig } from 'vitest/config';
|
|
import tailwindcss from 'tailwindcss';
|
|
import { UserConfigExport } from 'vite';
|
|
|
|
const app = async (): Promise<UserConfigExport> => {
|
|
return defineConfig({
|
|
plugins: [react()],
|
|
css: {
|
|
postcss: {
|
|
plugins: [tailwindcss],
|
|
},
|
|
},
|
|
});
|
|
};
|
|
// https://vitejs.dev/config/
|
|
export default app;
|