Files
astro-tina/astro.config.mjs
Kunthawat Greethong 18c4dbdb84
Some checks failed
Deploy to Easypanel / deploy (push) Has been cancelled
Simplified: remove Tailwind, standalone static HTML
2026-04-28 10:18:57 +07:00

17 lines
345 B
JavaScript

import { defineConfig } from 'astro/config'
import { fileURLToPath } from 'url'
import path from 'path'
const __dirname = path.dirname(fileURLToPath(import.meta.url))
export default defineConfig({
site: 'https://example.com',
output: 'static',
build: {
assets: '_assets',
},
server: {
host: '0.0.0.0',
port: 4321,
},
})