15 lines
306 B
JavaScript
15 lines
306 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
host: true,
|
|
allowedHosts: [
|
|
'5173--main--sebastian--sebastian--sfkl73v7pva4g.pit-1.try.coder.app',
|
|
'.coder.app',
|
|
'localhost'
|
|
]
|
|
}
|
|
})
|