- Moved existing FIGMA-related files into `Vison_01` and `Vision_02` folders to better support versioning and collaboration. - Added PostCSS configuration for extending plugins in Tailwind CSS. - Introduced new style guidelines, theme configurations, and modular imports for `Vision_02`. - Documented detailed ÖTO tournament structures and parameters for CSN/CDN inclusions. - Enhanced routing and UI files for future scalability, including new `theme.tsx` and `routes.tsx`. Signed-off-by: Stefan Mogeritsch <stefan.mo.co@gmail.com>
23 lines
616 B
TypeScript
23 lines
616 B
TypeScript
import {defineConfig} from 'vite'
|
||
import path from 'path'
|
||
import tailwindcss from '@tailwindcss/vite'
|
||
import react from '@vitejs/plugin-react'
|
||
|
||
export default defineConfig({
|
||
plugins: [
|
||
// The React and Tailwind plugins are both required for Make, even if
|
||
// Tailwind is not being actively used – do not remove them
|
||
react(),
|
||
tailwindcss(),
|
||
],
|
||
resolve: {
|
||
alias: {
|
||
// Alias @ to the src directory
|
||
'@': path.resolve(__dirname, './src'),
|
||
},
|
||
},
|
||
|
||
// File types to support raw imports. Never add .css, .tsx, or .ts files to this.
|
||
assetsInclude: ['**/*.svg', '**/*.csv'],
|
||
})
|