mirror of
https://github.com/documenso/documenso.git
synced 2025-11-20 19:51:32 +10:00
16 lines
454 B
TypeScript
16 lines
454 B
TypeScript
// @ts-expect-error This is just due to our root config, it's a non-issue
|
|
import { reactRouter } from '@react-router/dev/vite';
|
|
import autoprefixer from 'autoprefixer';
|
|
import tailwindcss from 'tailwindcss';
|
|
import { defineConfig } from 'vite';
|
|
import tsconfigPaths from 'vite-tsconfig-paths';
|
|
|
|
export default defineConfig({
|
|
css: {
|
|
postcss: {
|
|
plugins: [tailwindcss, autoprefixer],
|
|
},
|
|
},
|
|
plugins: [reactRouter(), tsconfigPaths()],
|
|
});
|