mirror of
https://github.com/NebulaServices/Nebula.git
synced 2025-05-14 04:20:00 -04:00
13 lines
295 B
JavaScript
13 lines
295 B
JavaScript
import { defineConfig } from "astro/config";
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
import icon from "astro-icon";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [tailwind(), icon()],
|
|
i18n: {
|
|
defaultLocale: "en-US",
|
|
locales: ["en-US", "jp"],
|
|
},
|
|
});
|