mirror of
https://git.hmsn.ink/kospo/svcm/dmz.git
synced 2026-03-20 00:22:26 +09:00
360 lines
10 KiB
TypeScript
360 lines
10 KiB
TypeScript
import { resolve, dirname } from 'node:path'
|
|
import { fileURLToPath } from 'node:url'
|
|
import { defineConfig } from 'vite'
|
|
import { isProduction, isDebug, env } from 'std-env'
|
|
import Vue from '@vitejs/plugin-vue'
|
|
import VueRouter from 'unplugin-vue-router/vite'
|
|
import { VueRouterAutoImports } from 'unplugin-vue-router'
|
|
import Components from 'unplugin-vue-components/vite'
|
|
import Imports from 'unplugin-auto-import/vite'
|
|
import I18n from '@intlify/unplugin-vue-i18n/vite'
|
|
import { VitePWA } from 'vite-plugin-pwa'
|
|
import PurgeCSS from 'rollup-plugin-purgecss'
|
|
import Unhead from '@unhead/addons/vite'
|
|
import DevTools from 'vite-plugin-vue-devtools'
|
|
import { unheadVueComposablesImports } from '@unhead/vue'
|
|
|
|
// local vite plugin
|
|
import { VueroMarkdownDoc } from './vite-plugin/vuero-doc'
|
|
import { PurgeComments } from './vite-plugin/purge-comments'
|
|
|
|
/**
|
|
* This is the main configuration file for vitejs
|
|
*
|
|
* @see https://vitejs.dev/config
|
|
*/
|
|
export default defineConfig(({ isSsrBuild }) => ({
|
|
// Project root directory (where index.html is located).
|
|
root: process.cwd(),
|
|
// Base public path when served in development or production.
|
|
// You also need to add this base like `history: createWebHistory('my-subdirectory')`
|
|
// in ./src/router.ts
|
|
// base: '/my-subdirectory/',
|
|
base: '/',
|
|
publicDir: 'public',
|
|
logLevel: 'info',
|
|
resolve: {
|
|
alias: [
|
|
{
|
|
find: '/@src/',
|
|
replacement: `/src/`,
|
|
},
|
|
{
|
|
find: '/@server/',
|
|
replacement: `/server/`,
|
|
},
|
|
],
|
|
},
|
|
// development server configuration
|
|
server: {
|
|
host: '0.0.0.0',
|
|
port: 3000,
|
|
proxy: {
|
|
'/api': {
|
|
target: 'https://svcm.hmsn.ink',
|
|
// target: 'http://localhost:8010',
|
|
changeOrigin: true,
|
|
// rewrite: (path) => path.replace(/^\/api/, ''),
|
|
},
|
|
},
|
|
},
|
|
ssr: {
|
|
// adding those dependencies to the ssr build allow to use compile time flags
|
|
noExternal: isProduction
|
|
? ['vue', 'vue-i18n', 'vue-router']
|
|
: ['vue-i18n', 'vue-router'],
|
|
},
|
|
define: {
|
|
// compile time flags - allow to tree shake ssr code if not needed
|
|
__VUERO_SSR_BUILD__: env.SSR_BUILD
|
|
? 'true'
|
|
: 'false',
|
|
// https://vuejs.org/api/compile-time-flags.html
|
|
__VUE_OPTIONS_API__: 'true',
|
|
__VUE_PROD_DEVTOOLS__: isDebug
|
|
? 'true'
|
|
: 'false',
|
|
__VUE_PROD_HYDRATION_MISMATCH_DETAILS__: isDebug
|
|
? 'true'
|
|
: 'false',
|
|
},
|
|
build: {
|
|
target: 'esnext',
|
|
cssMinify: isDebug
|
|
? false
|
|
: 'esbuild',
|
|
minify: isDebug
|
|
? false
|
|
: 'terser',
|
|
sourcemap: isDebug,
|
|
rollupOptions: {
|
|
output: {
|
|
format: 'esm',
|
|
entryFileNames: isSsrBuild ? '[name].mjs' : '[name]-[hash].js',
|
|
// Using only hash to prevent adblockers from blocking assets that match their patterns.
|
|
chunkFileNames: isDebug
|
|
? `assets/_/[name].${isSsrBuild ? 'mjs' : 'js'}`
|
|
: `assets/_/[hash].${isSsrBuild ? 'mjs' : 'js'}`,
|
|
assetFileNames: isDebug
|
|
? 'assets/[name][extname]'
|
|
: 'assets/[hash][extname]',
|
|
// Using manualChunks to group layout scss in one chunk to avoid Cumulative Layout Shift (CLS)
|
|
manualChunks(id) {
|
|
if (id.endsWith('scss/main.scss')) {
|
|
return 'layouts'
|
|
}
|
|
if (id.endsWith('.scss') && id.match(/components\/layouts\/(?:.*?)scss$/)) {
|
|
return 'layouts'
|
|
}
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
/**
|
|
* Shows a quick overview of your app, including the Vue version, pages and components.
|
|
*
|
|
* @see https://devtools-next.vuejs.org/
|
|
*/
|
|
DevTools(),
|
|
|
|
/**
|
|
* unplugin-vue-router plugin generate routes based on file system
|
|
* allow to use typed routes and usage of defineLoader
|
|
*
|
|
* @see https://uvr.esm.is/rfcs/data-loaders/
|
|
*/
|
|
VueRouter({
|
|
routesFolder: 'src/pages',
|
|
dts: './types/router.d.ts',
|
|
}),
|
|
|
|
/**
|
|
* plugin-vue plugin inject vue library and allow sfc files to work (*.vue)
|
|
*
|
|
* @see https://github.com/vitejs/vite-plugin-vue/blob/main/packages/plugin-vue/README.md
|
|
*/
|
|
Vue({
|
|
include: [/\.vue$/],
|
|
template: {
|
|
compilerOptions: {
|
|
isCustomElement: tag => ['iconify-icon'].includes(tag),
|
|
},
|
|
},
|
|
}),
|
|
|
|
/**
|
|
* unplugin-vue-i18n plugin does i18n resources pre-compilation / optimizations
|
|
*
|
|
* @see https://github.com/intlify/bundle-tools/blob/main/packages/unplugin-vue-i18n/README.md
|
|
*/
|
|
I18n({
|
|
include: resolve(dirname(fileURLToPath(import.meta.url)), './src/locales/**'),
|
|
fullInstall: false,
|
|
compositionOnly: true,
|
|
}),
|
|
|
|
/**
|
|
* Unhead provides a Vite plugin to optimise your builds, by removing composables that aren't needed and simplifying your code.
|
|
*
|
|
* @see https://unhead.harlanzw.com/guide/getting-started/vite-plugin
|
|
*/
|
|
Unhead(),
|
|
|
|
/**
|
|
* unplugin-auto-import allow to automaticaly import modules/components
|
|
*
|
|
* @see https://github.com/antfu/unplugin-auto-import
|
|
*/
|
|
Imports({
|
|
dts: './types/imports.d.ts',
|
|
imports: [
|
|
'vue',
|
|
'@vueuse/core',
|
|
'vue-i18n',
|
|
VueRouterAutoImports,
|
|
unheadVueComposablesImports,
|
|
],
|
|
dirs: ['src/composables', 'src/stores', 'src/utils'],
|
|
}),
|
|
|
|
/**
|
|
* This is an internal vite plugin that load markdown files as vue components.
|
|
*
|
|
* @see /documentation
|
|
* @see /vite-plugin/vuero-doc
|
|
* @see /src/components/partials/documentation/DocumentationItem.vue
|
|
* @see /src/composable/useMarkdownToc.ts
|
|
*/
|
|
VueroMarkdownDoc({
|
|
pathPrefix: 'documentation',
|
|
wrapperComponent: 'DocumentationItem',
|
|
shiki: {
|
|
themes: {
|
|
light: 'min-light',
|
|
dark: 'github-dark',
|
|
},
|
|
},
|
|
sourceMeta: {
|
|
enabled: true,
|
|
editProtocol: 'vscode://vscode-remote/wsl+Ubuntu', // or 'vscode://file'
|
|
},
|
|
}),
|
|
|
|
/**
|
|
* This is an internal vite plugin that remove html comments from code.
|
|
*
|
|
* @see /vite-plugin/purge-comments
|
|
*/
|
|
PurgeComments(),
|
|
|
|
/**
|
|
* unplugin-vue-components plugin is responsible of autoloading components
|
|
* documentation and md file are loaded for elements and components sections
|
|
*
|
|
* @see https://github.com/antfu/unplugin-vue-components
|
|
*/
|
|
Components({
|
|
dirs: ['documentation', 'src/components'],
|
|
extensions: ['vue', 'md'],
|
|
dts: './types/components.d.ts',
|
|
include: [/\.vue$/, /\.vue\?vue/, /\.md$/],
|
|
}),
|
|
|
|
/**
|
|
* vite-plugin-pwa generate manifest.json and register services worker to enable PWA
|
|
*
|
|
* @see https://github.com/antfu/vite-plugin-pwa
|
|
*/
|
|
VitePWA({
|
|
base: '/',
|
|
includeAssets: ['favicon.svg', 'favicon.ico', 'robots.txt', 'apple-touch-icon.png'],
|
|
manifest: {
|
|
name: 'Vuero - A complete Vue 3 design system',
|
|
short_name: 'Vuero',
|
|
start_url: '/?utm_source=pwa',
|
|
display: 'standalone',
|
|
theme_color: '#ffffff',
|
|
background_color: '#ffffff',
|
|
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',
|
|
},
|
|
],
|
|
},
|
|
mode: isProduction
|
|
? 'production'
|
|
: 'development',
|
|
workbox: {
|
|
/**
|
|
* precache files that match the glob pattern
|
|
*
|
|
* @see https://vite-pwa-org.netlify.app/guide/service-worker-precache.html
|
|
*/
|
|
globPatterns: ['**/*.{js,mjs,css,ico,png,svg,webp,jpg,jpeg,html}'],
|
|
},
|
|
}),
|
|
|
|
/**
|
|
* rollup-plugin-purgecss plugin is responsible of purging css rules
|
|
* that are not used in the bundle
|
|
*
|
|
* @see https://github.com/FullHuman/purgecss/tree/main/packages/rollup-plugin-purgecss
|
|
*/
|
|
PurgeCSS({
|
|
output: false,
|
|
content: [`./src/**/*.vue`],
|
|
variables: false,
|
|
safelist: {
|
|
standard: [
|
|
/(autv|lnil|lnir|fas?)/,
|
|
/-(leave|enter|appear)(|-(to|from|active))$/,
|
|
/^(?!(|.*?:)cursor-move).+-move$/,
|
|
/^router-link(|-exact)-active$/,
|
|
/data-v-.*/,
|
|
],
|
|
},
|
|
defaultExtractor(content) {
|
|
const contentWithoutStyleBlocks = content.replace(/<style[^]+?<\/style>/gi, '')
|
|
return contentWithoutStyleBlocks.match(/[A-Za-z0-9-_/:]*[A-Za-z0-9-_/]+/g) || []
|
|
},
|
|
}),
|
|
],
|
|
// Predefine dependencies in order to prevent reloading them in the browser during development.
|
|
optimizeDeps: {
|
|
include: [
|
|
'@mapbox/mapbox-gl-geocoder/dist/mapbox-gl-geocoder.min.js',
|
|
'@shikijs/rehype',
|
|
'@vee-validate/zod',
|
|
'@vueuse/core',
|
|
'@vueuse/router',
|
|
'@vueuse/integrations/useCookies',
|
|
'@vueform/multiselect',
|
|
'@vueform/slider',
|
|
'billboard.js',
|
|
'dayjs',
|
|
'dropzone',
|
|
'dragula',
|
|
'defu',
|
|
'filepond',
|
|
'filepond-plugin-file-validate-size',
|
|
'filepond-plugin-file-validate-type',
|
|
'filepond-plugin-image-exif-orientation',
|
|
'filepond-plugin-image-crop',
|
|
'filepond-plugin-image-edit',
|
|
'filepond-plugin-image-preview',
|
|
'filepond-plugin-image-resize',
|
|
'filepond-plugin-image-transform',
|
|
'focus-trap-vue',
|
|
'imask',
|
|
'nprogress',
|
|
'notyf',
|
|
'mapbox-gl',
|
|
'ofetch',
|
|
'photoswipe/lightbox',
|
|
'photoswipe',
|
|
'plyr',
|
|
'ufo',
|
|
'v-calendar',
|
|
'vee-validate',
|
|
'vue',
|
|
'vue-scrollto',
|
|
'vue3-apexcharts',
|
|
'vue-tippy',
|
|
'vue-i18n',
|
|
'vue-router',
|
|
'unplugin-vue-router/runtime',
|
|
'scule',
|
|
// 'simplebar',
|
|
'tiny-slider/src/tiny-slider',
|
|
'vue-accessible-color-picker',
|
|
'zod',
|
|
'rehype-external-links',
|
|
'rehype-raw',
|
|
'rehype-sanitize',
|
|
'rehype-stringify',
|
|
'rehype-slug',
|
|
'rehype-autolink-headings',
|
|
'remark-gfm',
|
|
'remark-parse',
|
|
'remark-rehype',
|
|
'unified',
|
|
'workbox-window',
|
|
'textarea-markdown-editor/dist/esm/bootstrap',
|
|
],
|
|
},
|
|
}))
|