vitesse/vite.config.ts

33 lines
935 B
TypeScript
Raw Normal View History

2020-08-22 00:12:07 +08:00
import path from 'path'
2020-08-21 00:32:38 +08:00
import { UserConfig } from 'vite'
2020-08-15 00:58:50 +08:00
import Voie from 'vite-plugin-voie'
2020-08-10 19:24:52 +08:00
import PurgeIcons from 'vite-plugin-purge-icons'
import ViteComponents from 'vite-plugin-components'
2020-08-10 02:43:04 +08:00
const alias = {
'/~/': path.resolve(__dirname, 'src'),
}
2020-08-21 00:32:38 +08:00
const config: UserConfig = {
alias,
2020-08-10 02:43:04 +08:00
plugins: [
2020-10-27 10:15:11 +08:00
Voie({
// load index page sync and bundled with the landing page to improve first loading time.
// feel free to remove if you don't need it
importMode(path: string) {
if (path === '/src/pages/index.vue')
return 'sync'
return 'async'
},
}),
ViteComponents({
// currently, vite does not provide an API for plugins to get the config https://github.com/vitejs/vite/issues/738
// as the `alias` changes the behavior of middlewares, you have to pass it to ViteComponents to do the resolving
alias,
}),
2020-08-10 19:24:52 +08:00
PurgeIcons(),
2020-08-10 02:43:04 +08:00
],
}
2020-08-21 00:32:38 +08:00
export default config