24 lines
512 B
TypeScript
24 lines
512 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
runtimeConfig: {
|
|
public: {
|
|
baseUrl: process.env.NUXT_PUBLIC_BASE_URL
|
|
}
|
|
},
|
|
css: [
|
|
'@/assets/style.css'
|
|
],
|
|
app: {
|
|
head: {
|
|
link: [
|
|
{ rel: 'icon', type: 'image/x-icon', href: '/logo.ico' }
|
|
]
|
|
}
|
|
},
|
|
devServer: {
|
|
port: 4000
|
|
}
|
|
})
|