✅ 53 pages (34 products + corporate) ✅ All logo images ✅ Nginx Dockerfile (production-ready) ✅ PDPA compliant (cookie consent) ✅ Modern design with Kanit font ✅ Line + Phone buttons on products Built: 2026-03-13
31 lines
572 B
JavaScript
31 lines
572 B
JavaScript
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,
|
|
},
|
|
},
|
|
});
|