26 lines
520 B
TypeScript
26 lines
520 B
TypeScript
import config from "./config";
|
|
|
|
import { fileURLToPath, URL } from "node:url";
|
|
import sitemap from "./config/sitemap";
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: "2025-05-15",
|
|
devtools: { enabled: true },
|
|
|
|
devServer: {
|
|
host: "localhost",
|
|
port: 4002,
|
|
},
|
|
|
|
nitro: {
|
|
output: {
|
|
dir: "./dist",
|
|
},
|
|
},
|
|
alias: {
|
|
"@": fileURLToPath(new URL("./", import.meta.url)),
|
|
},
|
|
css: ["@/assets/css/tailwind.css"],
|
|
...config,
|
|
});
|