Files
einundzwanzig-verein/vite.config.js
HolgerHatGarKeineNode 04abf231bd Add rich Markdown normalization and paste handling.
- 🛠 Introduce `RichTextMarkdownNormalizer` to convert Markdown and mixed input to cleaner HTML.
- 🗂 Include a new Blade partial to enable Markdown-on-paste behavior in rich-text editors.
- 📋 Enhance `create` and `edit` forms to normalize descriptions and support Markdown conversion.
- 🧪 Add test coverage for Markdown normalization scenarios.
- 🛠 Add CLI command to normalize project proposal descriptions in bulk.
- 🔧 Update `vite.config.js` for improved development setup (e.g., ignored paths).
2026-04-08 17:34:55 +01:00

27 lines
638 B
JavaScript

import {defineConfig} from 'vite';
import tailwindcss from '@tailwindcss/vite';
import laravel from 'laravel-vite-plugin';
export default defineConfig({
plugins: [
tailwindcss(),
laravel({
input: ['resources/css/app.css', 'resources/js/app.js'],
refresh: true,
}),
],
server: {
cors: true,
watch: {
ignored: [
'**/storage/**',
'**/bootstrap/cache/**',
'**/.idea/**',
'**/.junie/**',
'**/.fleet/**',
'**/.vscode/**',
],
},
},
});