vitesse/vite.config.ts

154 lines
3.9 KiB
TypeScript
Raw Normal View History

2020-08-22 00:12:07 +08:00
import path from 'path'
2021-02-05 08:55:10 +08:00
import { defineConfig } from 'vite'
2021-01-07 13:49:19 +08:00
import Vue from '@vitejs/plugin-vue'
import Pages from 'vite-plugin-pages'
import generateSitemap from 'vite-ssg-sitemap'
import Layouts from 'vite-plugin-vue-layouts'
2021-08-30 17:33:27 +08:00
import Components from 'unplugin-vue-components/vite'
import AutoImport from 'unplugin-auto-import/vite'
import Markdown from 'vite-plugin-vue-markdown'
import { VitePWA } from 'vite-plugin-pwa'
2022-08-06 23:26:17 +08:00
import { vueI18n as VueI18n } from '@intlify/vite-plugin-vue-i18n'
2021-09-11 07:33:14 +08:00
import Inspect from 'vite-plugin-inspect'
import LinkAttributes from 'markdown-it-link-attributes'
2022-02-17 20:59:24 +08:00
import Unocss from 'unocss/vite'
2022-07-24 19:29:27 +08:00
import Shiki from 'markdown-it-shiki'
2021-02-05 08:55:10 +08:00
export default defineConfig({
2021-02-12 23:33:42 +08:00
resolve: {
alias: {
'~/': `${path.resolve(__dirname, 'src')}/`,
},
2021-01-07 13:49:19 +08:00
},
2022-03-30 21:20:22 +08:00
2020-08-10 02:43:04 +08:00
plugins: [
2021-01-07 13:49:19 +08:00
Vue({
2021-01-21 05:57:32 +08:00
include: [/\.vue$/, /\.md$/],
reactivityTransform: true,
2021-01-07 13:49:19 +08:00
}),
// https://github.com/hannoeru/vite-plugin-pages
Pages({
2020-12-01 11:36:51 +08:00
extensions: ['vue', 'md'],
2020-10-27 10:15:11 +08:00
}),
2020-12-01 11:36:51 +08:00
// https://github.com/JohnCampionJr/vite-plugin-vue-layouts
Layouts(),
// https://github.com/antfu/unplugin-auto-import
AutoImport({
imports: [
'vue',
'vue-router',
'vue-i18n',
'vue/macros',
'@vueuse/head',
'@vueuse/core',
],
2021-09-25 15:04:51 +08:00
dts: 'src/auto-imports.d.ts',
2022-05-24 15:17:55 +08:00
dirs: [
'src/composables',
'src/store',
],
2022-05-24 15:24:26 +08:00
vueTemplate: true,
}),
2021-08-30 17:33:27 +08:00
// https://github.com/antfu/unplugin-vue-components
Components({
2020-12-01 11:36:51 +08:00
// allow auto load markdown components under `./src/components/`
extensions: ['vue', 'md'],
// allow auto import and register components used in markdown
2021-08-30 17:33:27 +08:00
include: [/\.vue$/, /\.vue\?vue/, /\.md$/],
2021-09-25 15:04:51 +08:00
dts: 'src/components.d.ts',
}),
2020-12-01 11:36:51 +08:00
2022-02-17 20:59:24 +08:00
// https://github.com/antfu/unocss
// see unocss.config.ts for config
Unocss(),
2021-02-16 12:38:22 +08:00
// https://github.com/antfu/vite-plugin-vue-markdown
2021-08-01 03:03:20 +08:00
// Don't need this? Try vitesse-lite: https://github.com/antfu/vitesse-lite
Markdown({
2022-07-24 19:29:27 +08:00
wrapperClasses: 'prose prose-sm m-auto text-left',
2021-08-01 03:03:20 +08:00
headEnabled: true,
markdownItSetup(md) {
// https://prismjs.com/
2022-07-24 19:29:27 +08:00
md.use(Shiki, {
theme: {
light: 'vitesse-light',
dark: 'vitesse-dark',
},
})
2021-08-01 03:03:20 +08:00
md.use(LinkAttributes, {
matcher: (link: string) => /^https?:\/\//.test(link),
2021-08-01 03:03:20 +08:00
attrs: {
target: '_blank',
rel: 'noopener',
},
})
},
}),
2020-12-01 11:36:51 +08:00
// https://github.com/antfu/vite-plugin-pwa
2020-10-28 18:05:02 +08:00
VitePWA({
2021-03-26 01:44:16 +08:00
registerType: 'autoUpdate',
includeAssets: ['favicon.svg', 'safari-pinned-tab.svg'],
2020-10-28 18:05:02 +08:00
manifest: {
name: 'Vitesse',
short_name: 'Vitesse',
2020-12-21 17:48:15 +08:00
theme_color: '#ffffff',
2020-10-28 18:05:02 +08:00
icons: [
{
src: '/pwa-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
},
{
src: '/pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'any maskable',
},
2020-10-28 18:05:02 +08:00
],
},
}),
// https://github.com/intlify/bundle-tools/tree/main/packages/vite-plugin-vue-i18n
VueI18n({
2021-07-18 21:28:12 +08:00
runtimeOnly: true,
compositionOnly: true,
2021-01-20 03:37:06 +08:00
include: [path.resolve(__dirname, 'locales/**')],
}),
2021-09-11 07:33:14 +08:00
// https://github.com/antfu/vite-plugin-inspect
2022-02-27 13:44:36 +08:00
// Visit http://localhost:3333/__inspect/ to see the inspector
Inspect(),
2020-08-10 02:43:04 +08:00
],
2021-07-14 00:51:31 +08:00
2021-12-26 13:16:12 +08:00
// https://github.com/vitest-dev/vitest
test: {
include: ['test/**/*.test.ts'],
environment: 'jsdom',
deps: {
inline: ['@vue', '@vueuse', 'vue-demi'],
},
},
2022-07-14 03:15:25 +08:00
// https://github.com/antfu/vite-ssg
ssgOptions: {
script: 'async',
formatting: 'minify',
onFinished() { generateSitemap() },
},
ssr: {
// TODO: workaround until they support native ESM
noExternal: ['workbox-window', /vue-i18n/],
},
2021-02-05 08:55:10 +08:00
})