vue3-core/playground/setup/vite.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
217 B
JavaScript
Raw Normal View History

2023-11-30 05:54:27 +08:00
// @ts-check
import { startVite } from 'vite-hyper-config'
import { DevPlugin } from './dev.js'
2023-11-30 05:54:27 +08:00
startVite(
undefined,
{ plugins: [DevPlugin()] },
{
deps: {
inline: ['@vitejs/plugin-vue']
}
2023-11-30 05:54:27 +08:00
}
)