mirror of
https://github.com/documenso/documenso.git
synced 2025-11-18 18:51:37 +10:00
wip
This commit is contained in:
14
apps/remix/vite.config.ts
Normal file
14
apps/remix/vite.config.ts
Normal file
@ -0,0 +1,14 @@
|
||||
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()],
|
||||
});
|
||||
Reference in New Issue
Block a user