ledgerrz/vite.config.ts
Daan Meijer 5ad018ed6e
Some checks failed
linter / quality (push) Failing after 1m7s
tests / ci (8.3) (push) Failing after 50s
tests / ci (8.4) (push) Failing after 1m6s
tests / ci (8.5) (push) Failing after 1m6s
retry voor web push
2026-06-21 23:45:50 +02:00

62 lines
1.9 KiB
TypeScript

import inertia from '@inertiajs/vite';
import { wayfinder } from '@laravel/vite-plugin-wayfinder';
import tailwindcss from '@tailwindcss/vite';
import vue from '@vitejs/plugin-vue';
import laravel from 'laravel-vite-plugin';
import { bunny } from 'laravel-vite-plugin/fonts';
import { defineConfig } from 'vite';
import { VitePWA } from 'vite-plugin-pwa';
export default defineConfig({
resolve: {
dedupe: ['@laravel/echo-vue'],
},
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.ts'],
refresh: true,
fonts: [
bunny('Instrument Sans', {
weights: [400, 500, 600],
}),
],
}),
inertia(),
tailwindcss(),
vue({
template: {
transformAssetUrls: {
base: null,
includeAbsolute: false,
},
},
}),
wayfinder({
formVariants: true,
}),
// VitePWA({
// registerType: 'autoUpdate',
// injectRegister: 'auto',
// workbox: {
// globPatterns: ['**/*.{js,css,html,ico,png,svg}'],
// runtimeCaching: [
// {
// urlPattern: ({ url }) => url.pathname.startsWith('/'),
// handler: 'NetworkFirst',
// options: {
// cacheName: 'api-cache',
// cacheableResponse: {
// statuses: [0, 200],
// },
// },
// },
// ],
// },
// srcDir: 'resources/js',
// filename: 'sw.js',
// outDir: 'public',
// }),
],
});