Replace Nexus HTML v3.1.0 with Nexus Laravel v3.1.0 source files - Replace static HTML files with Laravel Blade templates - Add Blade partials and layouts for design system - Add updated styles (app.css, daisyui.css, typography.css, etc.) - Add JavaScript components and page-specific scripts - Update package.json with new dependencies (apexcharts, choices.js, filepond, flatpickr, quill, simplebar, sortablejs, swiper, zod) - Add Tailwind 4 and DaisyUI 5 integration - Include public assets (images, fonts, icons) These files will serve as source/reference for implementing the new design system in the main Laravel application. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
469 B
JavaScript
18 lines
469 B
JavaScript
import { defineConfig } from 'vite';
|
|
import laravel from 'laravel-vite-plugin';
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
import { glob } from 'glob';
|
|
|
|
export default defineConfig(({ mode }) => {
|
|
return {
|
|
plugins: [
|
|
laravel({
|
|
input: ['resources/styles/app.css', ...glob.sync('resources/js/**/*.js')],
|
|
refresh: true,
|
|
}),
|
|
tailwindcss(),
|
|
],
|
|
publicDir: 'public',
|
|
};
|
|
});
|