rename rank.pompy.dev -> list.pompy.dev
This commit is contained in:
parent
767c892109
commit
ca9817102f
17 changed files with 5 additions and 5 deletions
36
apps/list/nuxt.config.ts
Normal file
36
apps/list/nuxt.config.ts
Normal file
|
@ -0,0 +1,36 @@
|
|||
const title = "pomp's biased & opinionated list of ..."
|
||||
|
||||
// https://nuxt.com/docs/api/configuration/nuxt-config
|
||||
export default defineNuxtConfig({
|
||||
compatibilityDate: "2024-11-01",
|
||||
devServer: { port: 3001 },
|
||||
devtools: { enabled: true },
|
||||
modules: [
|
||||
"@nuxtjs/color-mode",
|
||||
"@nuxtjs/tailwindcss",
|
||||
"@nuxtjs/google-fonts",
|
||||
"@nuxt/icon",
|
||||
],
|
||||
app: {
|
||||
head: {
|
||||
title, // default fallback title
|
||||
titleTemplate: `%s | ${title}`,
|
||||
htmlAttrs: {
|
||||
lang: "en",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
// https://color-mode.nuxtjs.org/#configuration
|
||||
colorMode: {
|
||||
// default is "-mode". Without this, tailwind dark mode won't work.
|
||||
classSuffix: "",
|
||||
},
|
||||
|
||||
// https://google-fonts.nuxtjs.org/getting-started/options
|
||||
googleFonts: {
|
||||
families: {
|
||||
"Noto Sans KR": true,
|
||||
},
|
||||
},
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue