11 lines
215 B
JavaScript
11 lines
215 B
JavaScript
import { defineConfig } from 'astro/config'
|
|
|
|
export default defineConfig({
|
|
server: {
|
|
host: '0.0.0.0',
|
|
port: 4321,
|
|
},
|
|
vite: {
|
|
allowedHosts: ['moreminimore-astro-tina.extyye.easypanel.host'],
|
|
},
|
|
}) |