mirror of
https://github.com/IT4Change/boilerplate-frontend.git
synced 2025-12-13 07:35:53 +00:00
14 lines
312 B
TypeScript
14 lines
312 B
TypeScript
import vue from '@vitejs/plugin-vue'
|
|
import vike from 'vike/plugin'
|
|
import { UserConfig } from 'vite'
|
|
|
|
const config: UserConfig = {
|
|
plugins: [
|
|
vue(),
|
|
process.env.STORYBOOK !== 'true' && vike(), // SSR only when storybook is not running
|
|
],
|
|
ssr: { noExternal: ['vuetify'] },
|
|
}
|
|
|
|
export default config
|