feat(deploy): production deployment setup and fixes
- Debian-based api image (bookworm-slim), docker/debian mirrors, prisma binaryTargets for openssl 3.0 - nginx: admin SPA under /admin, TLS via acme.sh (ZeroSSL) + auto-renewal cron, http->https redirect - prisma: add origin_goods.delisted migration, sync missing schema (good_image/tag_font_color/good_tags), fix users.createdAt Timestamptz - api: CORS wildcard reflection, helmet CORP cross-origin, price backfill in persistProductDetail, categoryIcon ancestor fallback, mediaByColor per-color gallery in public goods detail - admin: /admin base path (vite + router) - import-data.mjs: udt_name casting, serial sequence advance fix
This commit is contained in:
+36
-36
@@ -1,36 +1,36 @@
|
||||
export default defineNuxtConfig({
|
||||
compatibilityDate: '2025-07-15',
|
||||
devtools: { enabled: false },
|
||||
sourcemap: { server: false, client: false },
|
||||
|
||||
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',
|
||||
},
|
||||
},
|
||||
})
|
||||
export default defineNuxtConfig({
|
||||
compatibilityDate: '2025-07-15',
|
||||
devtools: { enabled: false },
|
||||
sourcemap: { server: false, client: false },
|
||||
|
||||
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',
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user