2023-06-18 20:11:38 +08:00
|
|
|
import { URL, fileURLToPath } from 'node:url';
|
|
|
|
import { resolve } from 'node:path';
|
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';
|
2023-06-28 02:39:20 +08:00
|
|
|
import markdown from 'vite-plugin-vue-markdown';
|
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';
|
2023-04-07 00:49:06 +08:00
|
|
|
import AutoImport from 'unplugin-auto-import/vite';
|
2023-04-07 01:01:01 +08:00
|
|
|
import Components from 'unplugin-vue-components/vite';
|
|
|
|
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers';
|
2023-04-07 01:36:30 +08:00
|
|
|
import Unocss from 'unocss/vite';
|
2023-05-08 05:31:10 +08:00
|
|
|
import { configDefaults } from 'vitest/config';
|
|
|
|
import Icons from 'unplugin-icons/vite';
|
|
|
|
import IconsResolver from 'unplugin-icons/resolver';
|
2023-06-18 20:11:38 +08:00
|
|
|
import VueI18n from '@intlify/unplugin-vue-i18n/vite';
|
2022-03-31 06:33:29 +08:00
|
|
|
|
2023-06-20 00:42:29 +08:00
|
|
|
const baseUrl = process.env.BASE_URL ?? '/';
|
|
|
|
|
2022-03-31 06:33:29 +08:00
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2022-04-12 19:24:14 +08:00
|
|
|
plugins: [
|
2023-06-18 20:11:38 +08:00
|
|
|
VueI18n({
|
|
|
|
runtimeOnly: true,
|
|
|
|
compositionOnly: true,
|
|
|
|
fullInstall: true,
|
2023-09-04 04:07:45 +08:00
|
|
|
include: [resolve(__dirname, 'locales/**')],
|
2023-06-18 20:11:38 +08:00
|
|
|
}),
|
2023-04-07 00:49:06 +08:00
|
|
|
AutoImport({
|
|
|
|
imports: [
|
|
|
|
'vue',
|
|
|
|
'vue-router',
|
|
|
|
'@vueuse/core',
|
2023-06-18 20:11:38 +08:00
|
|
|
'vue-i18n',
|
2023-04-07 00:49:06 +08:00
|
|
|
{
|
|
|
|
'naive-ui': ['useDialog', 'useMessage', 'useNotification', 'useLoadingBar'],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
vueTemplate: true,
|
|
|
|
eslintrc: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
}),
|
2023-05-08 05:31:10 +08:00
|
|
|
Icons({ compiler: 'vue3' }),
|
2022-04-12 19:24:14 +08:00
|
|
|
vue({
|
|
|
|
include: [/\.vue$/, /\.md$/],
|
|
|
|
}),
|
|
|
|
vueJsx(),
|
|
|
|
markdown(),
|
2022-04-15 04:41:51 +08:00
|
|
|
svgLoader(),
|
2022-04-15 22:11:25 +08:00
|
|
|
VitePWA({
|
2023-03-02 06:35:17 +08:00
|
|
|
registerType: 'autoUpdate',
|
2022-04-15 22:11:25 +08:00
|
|
|
strategies: 'generateSW',
|
|
|
|
manifest: {
|
|
|
|
name: 'IT Tools',
|
|
|
|
description: 'Aggregated set of useful tools for developers.',
|
|
|
|
display: 'standalone',
|
|
|
|
lang: 'fr-FR',
|
2023-06-20 00:42:29 +08:00
|
|
|
start_url: `${baseUrl}?utm_source=pwa&utm_medium=pwa`,
|
2022-04-15 22:11:25 +08:00
|
|
|
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',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}),
|
2023-04-07 01:01:01 +08:00
|
|
|
Components({
|
2023-04-20 03:38:59 +08:00
|
|
|
dirs: ['src/'],
|
|
|
|
extensions: ['vue', 'md'],
|
|
|
|
include: [/\.vue$/, /\.vue\?vue/, /\.md$/],
|
2023-05-08 05:31:10 +08:00
|
|
|
resolvers: [NaiveUiResolver(), IconsResolver({ prefix: 'icon' })],
|
2023-04-07 01:01:01 +08:00
|
|
|
}),
|
2023-04-07 01:36:30 +08:00
|
|
|
Unocss(),
|
2022-04-12 19:24:14 +08:00
|
|
|
],
|
2023-06-20 00:42:29 +08:00
|
|
|
base: baseUrl,
|
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),
|
|
|
|
},
|
2023-05-08 05:31:10 +08:00
|
|
|
test: {
|
|
|
|
exclude: [...configDefaults.exclude, '**/*.e2e.spec.ts'],
|
|
|
|
},
|
2023-09-04 04:07:45 +08:00
|
|
|
build: {
|
|
|
|
target: 'esnext',
|
|
|
|
},
|
2022-04-09 21:17:59 +08:00
|
|
|
});
|