vitesse/vite.config.ts

19 lines
379 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
2020-08-21 00:32:38 +08:00
const config: UserConfig = {
2020-08-22 00:12:07 +08:00
alias: {
'/~/': path.resolve(__dirname, 'src'),
},
2020-08-10 02:43:04 +08:00
plugins: [
2020-08-20 16:04:00 +08:00
Voie(),
ViteComponents(),
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