Migrate NotFound component to tailwind

This commit is contained in:
Alejandro Celaya
2025-04-01 11:18:32 +02:00
parent ca4543b227
commit ad00e54df8
7 changed files with 787 additions and 7 deletions

View File

@@ -1,3 +1,4 @@
import tailwindcss from '@tailwindcss/vite';
import react from '@vitejs/plugin-react';
import { resolve } from 'path';
import { VitePWA } from 'vite-plugin-pwa';
@@ -11,7 +12,7 @@ const homepage = pack.homepage?.trim();
/* eslint-disable-next-line no-restricted-exports */
export default defineConfig({
plugins: [react(), VitePWA({
plugins: [react(), tailwindcss(), VitePWA({
mode: process.env.NODE_ENV === 'development' ? 'development' : 'production',
strategies: 'injectManifest',
srcDir: './src',