zterton-status/vite.config.ts

117 lines
2.7 KiB
TypeScript
Raw Permalink Normal View History

2021-10-14 14:43:47 +00:00
import path from 'path'
import { defineConfig } from 'vite'
import Vue from '@vitejs/plugin-vue'
import Pages from 'vite-plugin-pages'
import { imagetools } from 'vite-imagetools'
import Layouts from 'vite-plugin-vue-layouts';
import Icons from 'unplugin-icons/vite'
import IconsResolver from 'unplugin-icons/resolver'
import Components from 'unplugin-vue-components/vite'
import WindiCSS from 'vite-plugin-windicss'
import AutoImport from 'unplugin-auto-import/vite'
import VueI18n from '@intlify/vite-plugin-vue-i18n'
2021-10-19 20:44:41 +00:00
import Markdown from 'vite-plugin-md'
import Inspect from 'vite-plugin-inspect'
2021-10-14 14:43:47 +00:00
export default defineConfig({
resolve: {
alias: {
'~/': `${path.resolve(__dirname, 'src')}/`,
'@/': `${path.resolve(__dirname, 'src/components')}/`,
},
},
plugins: [
2021-10-19 20:44:41 +00:00
Vue({
include: [/\.vue$/, /\.md$/], // <--
}),
2021-10-14 14:43:47 +00:00
// https://github.com/hannoeru/vite-plugin-pages
2021-10-19 20:44:41 +00:00
Pages({
extensions: ['vue', 'md'],
}),
2021-10-14 14:43:47 +00:00
imagetools(),
// https://github.com/JohnCampionJr/vite-plugin-vue-layouts
Layouts({
layoutsDir: 'src/layouts',
defaultLayout: 'Default'
}),
// https://github.com/antfu/unplugin-auto-import
AutoImport({
2021-10-19 20:44:41 +00:00
include: [
/\.[tj]sx?$/, // .ts, .tsx, .js, .jsx
/\.vue$/, /\.vue\?vue/, // .vue
/\.md$/, // .md
],
2021-10-14 14:43:47 +00:00
imports: [
'vue',
'vue-router',
'vue-i18n',
2021-10-19 20:44:41 +00:00
'vuex',
2021-10-14 14:43:47 +00:00
'@vueuse/head',
'@vueuse/core',
],
dts: true,
}),
// https://github.com/antfu/vite-plugin-components
Components({
2021-10-19 20:44:41 +00:00
// allow auto load markdown components under `./src/components/`
extensions: ['vue', 'md'],
2021-10-14 14:43:47 +00:00
resolvers: [
// auto import icons
// https://github.com/antfu/vite-plugin-icons
IconsResolver({
componentPrefix: '',
enabledCollections: ['carbon'],
}),
],
2021-10-19 20:44:41 +00:00
// allow auto import and register components used in markdown
include: [/\.vue$/, /\.vue\?vue/, /\.md$/],
2021-10-14 14:43:47 +00:00
dts: true,
}),
// https://github.com/antfu/vite-plugin-icons
Icons({
autoInstall: true,
}),
// https://github.com/antfu/vite-plugin-windicss
WindiCSS({
}),
VueI18n({
runtimeOnly: true,
compositionOnly: true,
include: [path.resolve(__dirname, 'locales/**')],
2021-10-19 20:44:41 +00:00
}),
// https://github.com/antfu/vite-plugin-md
Markdown({
}),
// https://github.com/antfu/vite-plugin-inspect
Inspect({
// change this to enable inspect for debugging
enabled: false,
2021-10-14 14:43:47 +00:00
}),
],
server: {
fs: {
strict: true,
},
},
2021-10-19 20:44:41 +00:00
build: {
sourcemap: false,
},
2021-10-14 14:43:47 +00:00
optimizeDeps: {
include: [
'vue',
'vue-router',
'@vueuse/core',
'@vueuse/head',
],
exclude: [
'vue-demi',
],
},
})