feat: backend MVP (auth/rbac, catalog, orders, fulfillment, invoices) + specs + scaffolds
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
export default defineNuxtConfig({
|
||||
modules: ["@pinia/nuxt", "@nuxtjs/i18n"],
|
||||
css: ["@vmall/shared/ui.css"],
|
||||
devtools: { enabled: false },
|
||||
devServer: { port: 3000 },
|
||||
runtimeConfig: {
|
||||
public: {
|
||||
apiBase: "http://localhost:8080/api",
|
||||
appName: "mall",
|
||||
},
|
||||
},
|
||||
i18n: {
|
||||
strategy: "no_prefix",
|
||||
defaultLocale: "en",
|
||||
locales: [
|
||||
{ code: "en", name: "English" },
|
||||
{ code: "zh", name: "中文" },
|
||||
],
|
||||
vueI18n: "./i18n.config.ts",
|
||||
},
|
||||
compatibilityDate: "2025-01-01",
|
||||
});
|
||||
Reference in New Issue
Block a user