This commit is contained in:
Morten Olsen
2025-09-21 08:43:15 +02:00
commit 0ab9a27493
18 changed files with 5379 additions and 0 deletions

16
vite.config.ts Normal file
View File

@@ -0,0 +1,16 @@
import { resolve } from 'node:path';
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react-swc';
import tailwindcss from '@tailwindcss/vite';
// https://vite.dev/config/
// eslint-disable-next-line import/no-default-export
export default defineConfig({
plugins: [react(), tailwindcss()],
resolve: {
alias: {
'@morten-olsen/yafff': resolve('./lib/exports.ts'),
},
},
});