2022-04-09 21:17:59 +08:00
|
|
|
import { fileURLToPath, URL } from 'url';
|
2022-03-31 06:33:29 +08:00
|
|
|
|
2022-04-09 21:17:59 +08:00
|
|
|
import { defineConfig } from 'vite';
|
|
|
|
import vue from '@vitejs/plugin-vue';
|
|
|
|
import vueJsx from '@vitejs/plugin-vue-jsx';
|
2022-04-12 19:24:14 +08:00
|
|
|
import markdown from 'vite-plugin-md';
|
2022-04-15 04:41:51 +08:00
|
|
|
import svgLoader from 'vite-svg-loader';
|
2022-04-15 22:11:25 +08:00
|
|
|
import { VitePWA } from 'vite-plugin-pwa';
|
2022-03-31 06:33:29 +08:00
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2022-04-12 19:24:14 +08:00
|
|
|
plugins: [
|
|
|
|
vue({
|
|
|
|
include: [/\.vue$/, /\.md$/],
|
|
|
|
}),
|
|
|
|
vueJsx(),
|
|
|
|
markdown(),
|
2022-04-15 04:41:51 +08:00
|
|
|
svgLoader(),
|
2022-04-15 22:11:25 +08:00
|
|
|
VitePWA({
|
|
|
|
registerType: 'autoUpdate',
|
|
|
|
strategies: 'generateSW',
|
|
|
|
manifest: {
|
|
|
|
name: 'IT Tools',
|
|
|
|
description: 'Aggregated set of useful tools for developers.',
|
|
|
|
display: 'standalone',
|
|
|
|
lang: 'fr-FR',
|
|
|
|
start_url: '/?utm_source=pwa&utm_medium=pwa',
|
|
|
|
orientation: 'any',
|
|
|
|
theme_color: '#18a058',
|
|
|
|
background_color: '#f1f5f9',
|
|
|
|
icons: [
|
|
|
|
{
|
|
|
|
src: '/favicon-16x16.png',
|
|
|
|
type: 'image/png',
|
|
|
|
sizes: '16x16',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: '/favicon-32x32.png',
|
|
|
|
type: 'image/png',
|
|
|
|
sizes: '32x32',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: '/android-chrome-192x192.png',
|
|
|
|
sizes: '192x192',
|
|
|
|
type: 'image/png',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: '/android-chrome-512x512.png',
|
|
|
|
sizes: '512x512',
|
|
|
|
type: 'image/png',
|
|
|
|
purpose: 'any maskable',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}),
|
2022-04-12 19:24:14 +08:00
|
|
|
],
|
2022-03-31 06:33:29 +08:00
|
|
|
resolve: {
|
|
|
|
alias: {
|
2022-04-09 21:17:59 +08:00
|
|
|
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
|
|
|
},
|
|
|
|
},
|
2022-04-16 17:45:50 +08:00
|
|
|
define: {
|
|
|
|
'import.meta.env.PACKAGE_VERSION': JSON.stringify(process.env.npm_package_version),
|
2022-04-16 21:12:33 +08:00
|
|
|
'import.meta.env.GIT_SHORT_SHA': JSON.stringify((process?.env?.VITE_VERCEL_GIT_COMMIT_SHA ?? '').slice(0, 7)),
|
2022-04-16 17:45:50 +08:00
|
|
|
},
|
2022-04-09 21:17:59 +08:00
|
|
|
});
|