first commit
This commit is contained in:
commit
e1362c0d36
25 changed files with 13100 additions and 0 deletions
37
nuxt.config.ts
Normal file
37
nuxt.config.ts
Normal file
|
@ -0,0 +1,37 @@
|
|||
// https://nuxt.com/docs/api/configuration/nuxt-config
|
||||
export default defineNuxtConfig({
|
||||
app: {
|
||||
head: {
|
||||
meta: [
|
||||
{ charset: "utf-8" },
|
||||
{ name: "viewport", content: "width=device-width, initial-scale=1" },
|
||||
{
|
||||
name: "robots",
|
||||
content: "noindex,nofollow",
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
css: ["@/assets/css/style.css"],
|
||||
modules: ["nuxt-graphql-client", "@nuxt/image"],
|
||||
|
||||
runtimeConfig: { public: { GQL_HOST: "http://0.0.0.0:8055/graphql" } },
|
||||
|
||||
image: {
|
||||
dir: "assets/images",
|
||||
domains: ["http://0.0.0.0:8055"],
|
||||
alias: { directus: "http://0.0.0.0:8055/assets/" },
|
||||
presets: {
|
||||
gift: { modifiers: { width: 200, height: 200, fit: "contain" } },
|
||||
},
|
||||
},
|
||||
postcss: {
|
||||
plugins: {
|
||||
"postcss-import-ext-glob": {},
|
||||
},
|
||||
},
|
||||
telemetry: false,
|
||||
typescript: {
|
||||
shim: false,
|
||||
},
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue