All checks were successful
gitea/MERN_STACK_TEMPLATE/pipeline/head This commit looks good
15 lines
275 B
JavaScript
15 lines
275 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react(), tailwindcss(),],
|
|
server: {
|
|
port: 8000,
|
|
host: true
|
|
|
|
},
|
|
})
|