mirror of
https://github.com/BreizhHardware/portfolio.git
synced 2026-01-18 16:37:22 +01:00
17 lines
434 B
TypeScript
17 lines
434 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
import viteTsconfigPaths from 'vite-tsconfig-paths';
|
|
import svgr from 'vite-plugin-svgr';
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
react(),
|
|
tailwindcss(),
|
|
viteTsconfigPaths(),
|
|
svgr({
|
|
include: '**/*.svg?react',
|
|
}),
|
|
],
|
|
}); |