15 lines
403 B
TypeScript
15 lines
403 B
TypeScript
/// <reference types="vitest" />
|
|
import { defineConfig } from 'vite';
|
|
import svgr from 'vite-plugin-svgr';
|
|
import react from '@vitejs/plugin-react-swc';
|
|
import tsconfigPaths from 'vite-tsconfig-paths';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react(), tsconfigPaths(), svgr()],
|
|
base: '/', // base 경로를 절대 경로로 수정
|
|
test: {
|
|
globals: true,
|
|
},
|
|
});
|