mirror of
https://github.com/Spythere/pojazdownik.git
synced 2026-05-03 11:44:19 +00:00
54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
import { defineConfig } from 'vite';
|
|
import vue from '@vitejs/plugin-vue';
|
|
|
|
import { VitePWA } from 'vite-plugin-pwa';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
server: {
|
|
port: 2138,
|
|
},
|
|
plugins: [
|
|
vue(),
|
|
VitePWA({
|
|
registerType: 'autoUpdate',
|
|
|
|
includeAssets: ['/images/*.{png,svg,jpg}', '/fonts/*.{woff,woff2,ttf}'],
|
|
|
|
devOptions: {
|
|
suppressWarnings: true,
|
|
enabled: true,
|
|
},
|
|
|
|
workbox: {
|
|
globPatterns: ['**/*.{js,css,html,jpg,png,svg,img,woff,woff2}'],
|
|
|
|
runtimeCaching: [
|
|
{
|
|
urlPattern: new RegExp('^https://rj.td2.info.pl/dist/img/thumbnails/*', 'i'),
|
|
handler: 'CacheFirst',
|
|
options: {
|
|
cacheName: 'swdr-images-cache',
|
|
expiration: {
|
|
maxEntries: 50,
|
|
maxAgeSeconds: 60 * 60 * 24, // <== 1 day
|
|
},
|
|
cacheableResponse: {
|
|
statuses: [0, 200, 404],
|
|
},
|
|
},
|
|
},
|
|
|
|
{
|
|
urlPattern: new RegExp('^https://stacjownik.spythere.eu/vehicles', 'i'),
|
|
handler: 'NetworkFirst',
|
|
options: {
|
|
cacheName: 'vehicles-cache',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
}),
|
|
],
|
|
});
|