Initial commit - Redesigned Deal Plus Tech website with new layouts

This commit is contained in:
Kunthawat Greethong
2026-04-22 01:40:24 +07:00
commit da570f510e
536 changed files with 39024 additions and 0 deletions

23
astro.config.mjs Normal file
View File

@@ -0,0 +1,23 @@
// @ts-check
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(),
sitemap(),
],
output: 'static',
i18n: {
defaultLocale: 'th',
locales: ['th'],
routing: {
prefixDefaultLocale: false,
},
},
build: {
inlineStylesheets: 'auto',
},
});