37 lines
963 B
TypeScript
37 lines
963 B
TypeScript
import vue from '@vitejs/plugin-vue';
|
|
import laravel from 'laravel-vite-plugin';
|
|
import path from 'path';
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import { resolve } from 'node:path';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
include: ['resources/js/__tests__/**/*.test.js'],
|
|
},
|
|
plugins: [
|
|
laravel({
|
|
input: ['resources/js/app.ts'],
|
|
ssr: 'resources/js/ssr.ts',
|
|
refresh: true,
|
|
}),
|
|
tailwindcss(),
|
|
vue({
|
|
template: {
|
|
transformAssetUrls: {
|
|
base: null,
|
|
includeAbsolute: false,
|
|
},
|
|
},
|
|
}),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './resources/js'),
|
|
'ziggy-js': resolve(__dirname, 'vendor/tightenco/ziggy'),
|
|
},
|
|
},
|
|
});
|