-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
37 lines (31 loc) · 792 Bytes
/
Copy pathnuxt.config.ts
File metadata and controls
37 lines (31 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// https://v3.nuxtjs.org/api/configuration/nuxt.config
// import eslint from 'vite-plugin-eslint'
export default defineNuxtConfig({
ssr: true,
devtools: { enabled: true },
sourcemap: true,
typescript: {
shim: false,
},
app: {
head: {
title: "Docker registry UI",
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{
name: "description",
content: process.env.npm_package_description || "",
},
],
link: [{ rel: "icon", type: "image/svg+xml", href: "/favicon.svg" }],
},
},
modules: ["@nuxtjs/tailwindcss", "@nuxtjs/robots", "@nuxt/eslint"],
vite: {
plugins: [
// eslint()
],
},
compatibilityDate: "2024-08-08",
});