mirror of
https://github.com/vitest-dev/vitest.git
synced 2026-02-01 17:36:51 +00:00
14 lines
202 B
TypeScript
14 lines
202 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue(),
|
|
],
|
|
define: {
|
|
MY_CONSTANT: '"my constant"',
|
|
},
|
|
test: {
|
|
},
|
|
})
|