11 lines
229 B
TypeScript
11 lines
229 B
TypeScript
import tailwindcss from '@tailwindcss/vite';
|
|
import react from '@vitejs/plugin-react';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [tailwindcss(), react()],
|
|
server: {
|
|
port: 5178,
|
|
},
|
|
});
|