项目文件夹

文件
wehub-resource-sync 414df5bfb0
CI / build (push) Failing after 13m25s
chore: import upstream snapshot with attribution
2026-07-13 12:32:27 +08:00

77 行
1.9 KiB
TypeScript

import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { VitePWA } from "vite-plugin-pwa";
// https://vitejs.dev/config/
export default defineConfig({
assetsInclude: ["**/*.pfb", "**/*.ttf"],
plugins: [
vue(),
VitePWA({
includeAssets: ["favicon.ico", "apple-touch-icon.png", "favicon.svg"],
workbox: {
globPatterns: ["assets/*", "**/*.{js,css,html}"],
maximumFileSizeToCacheInBytes: 10000000,
},
manifest: {
name: "Look Scanned",
short_name: "Look Scanned",
description:
"Look Scanned is a pure frontend site that makes your PDFs look scanned! No need for printers and scanners anymore - everything you need to do is just a few clicks.",
theme_color: "#ffffff",
icons: [
{
"src": "pwa-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any"
},
{
"src": "pwa-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any"
},
{
"src": "pwa-maskable-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "pwa-maskable-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
},
}),
],
define: { "process.env": {} },
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
// worker: {
// format: "es",
// },
/* remove the need to specify .vue files https://vitejs.dev/config/#resolve-extensions
resolve: {
extensions: [
'.js',
'.json',
'.jsx',
'.mjs',
'.ts',
'.tsx',
'.vue',
]
},
*/
});