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