19 lines
379 B
JavaScript
19 lines
379 B
JavaScript
|
|
// @ts-check
|
||
|
|
import { defineConfig } from 'astro/config';
|
||
|
|
import react from '@astrojs/react';
|
||
|
|
import tailwindcss from '@tailwindcss/vite';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
integrations: [react()],
|
||
|
|
i18n: {
|
||
|
|
locales: ['zh', 'zh_Hant', 'en'],
|
||
|
|
defaultLocale: 'zh',
|
||
|
|
routing: {
|
||
|
|
prefixDefaultLocale: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
vite: {
|
||
|
|
plugins: [tailwindcss()],
|
||
|
|
},
|
||
|
|
});
|