mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2026-04-09 13:28:42 +00:00
- 🛠 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).
27 lines
638 B
JavaScript
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/**',
|
|
],
|
|
},
|
|
},
|
|
});
|