import { defineConfig } from 'astro/config'; import tailwind from '@astrojs/tailwind'; import sitemap from '@astrojs/sitemap'; export default defineConfig({ site: 'https://dealplustech.co.th', integrations: [ tailwind({ applyBaseStyles: true, }), sitemap(), ], i18n: { defaultLocale: 'th', locales: ['th'], routing: { prefixDefaultLocale: false, redirectToDefaultLocale: false, }, }, compressHTML: true, build: { inlineStylesheets: 'auto', }, vite: { build: { cssMinify: true, }, }, });