This commit is contained in:
Mythie
2025-01-07 12:45:53 +11:00
parent 866b036484
commit 84ad7a6c2b
6 changed files with 58 additions and 28 deletions

View 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()],
});