chore: rename service folders to lowercase
This commit is contained in:
28
frontend/nuxt.config.ts
Normal file
28
frontend/nuxt.config.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
import tailwindcss from "@tailwindcss/vite";
|
||||
|
||||
export default defineNuxtConfig({
|
||||
compatibilityDate: "2025-07-15",
|
||||
devtools: { enabled: true },
|
||||
css: ["~/assets/css/main.css"],
|
||||
|
||||
vite: {
|
||||
plugins: [tailwindcss() as any],
|
||||
},
|
||||
|
||||
modules: ["@nuxt/eslint", "@nuxtjs/apollo"],
|
||||
|
||||
runtimeConfig: {
|
||||
public: {
|
||||
graphqlHttpEndpoint: process.env.GRAPHQL_HTTP_ENDPOINT || "http://localhost:3000/api/graphql",
|
||||
},
|
||||
},
|
||||
|
||||
apollo: {
|
||||
clients: {
|
||||
default: {
|
||||
httpEndpoint: process.env.GRAPHQL_HTTP_ENDPOINT || "http://localhost:3000/api/graphql",
|
||||
connectToDevTools: process.dev,
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user