36 lines
653 B
TypeScript
36 lines
653 B
TypeScript
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
|
|
modules: ['@nuxtjs/seo'],
|
|
|
|
css: ['~/assets/css/tailwind.css', '@fortawesome/fontawesome-free/css/all.min.css'],
|
|
|
|
postcss: {
|
|
plugins: {
|
|
'@tailwindcss/postcss': {},
|
|
},
|
|
},
|
|
|
|
site: {
|
|
url: 'https://inkreach.com',
|
|
name: 'Inkreach',
|
|
description: 'InkReach Official Website',
|
|
defaultLocale: 'en',
|
|
},
|
|
|
|
app: {
|
|
head: {
|
|
link: [
|
|
{ rel: 'icon', type: 'image/png', href: '/logo-橙@2x.png' },
|
|
],
|
|
},
|
|
},
|
|
|
|
runtimeConfig: {
|
|
public: {
|
|
backendUrl: 'http://localhost:3001',
|
|
},
|
|
},
|
|
})
|