27 lines
833 B
TypeScript
27 lines
833 B
TypeScript
/// <reference types='vitest' />
|
|||
|
|
import { defineConfig } from 'vite';
|
||
|
|
import vue from '@vitejs/plugin-vue';
|
||
|
|
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
|
||
|
|
import { nxCopyAssetsPlugin } from '@nx/vite/plugins/nx-copy-assets.plugin';
|
||
|
|
|
||
|
|
export default defineConfig(() => ({
|
||
|
|
root: __dirname,
|
||
|
|
cacheDir: '../../node_modules/.vite/apps/landing',
|
||
|
|
plugins: [vue(), nxViteTsPaths(), nxCopyAssetsPlugin(['*.md'])],
|
||
|
|
// Uncomment this if you are using workers.
|
||
|
|
// worker: {
|
||
|
|
// plugins: [ nxViteTsPaths() ],
|
||
|
|
// },
|
||
|
|
test: {
|
||
|
|
watch: false,
|
||
|
|
globals: true,
|
||
|
|
environment: 'jsdom',
|
||
|
|
include: ['src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
|
||
|
|
reporters: ['default'],
|
||
|
|
coverage: {
|
||
|
|
reportsDirectory: '../../coverage/apps/landing',
|
||
|
|
provider: 'v8' as const,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
}));
|