This commit is contained in:
Mythie
2025-01-02 15:33:37 +11:00
parent 18ca0cf3d6
commit 866b036484
28 changed files with 3786 additions and 948 deletions

14
apps/remix/vite.config.ts Normal file
View 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()],
});