mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
13 lines
232 B
TypeScript
13 lines
232 B
TypeScript
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
{
|
|
name: 'throw-error',
|
|
config() {
|
|
throw new Error('This file should not initiate a workspace project.')
|
|
},
|
|
},
|
|
],
|
|
})
|