mirror of
https://github.com/versia-pub/frontend.git
synced 2026-06-14 07:29:15 +02:00
refactor: 🎨 Move Lysand-FE into its own repository
This commit is contained in:
commit
f6989707f4
26 changed files with 1226 additions and 0 deletions
59
nuxt.config.ts
Normal file
59
nuxt.config.ts
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
// https://nuxt.com/docs/api/configuration/nuxt-config
|
||||
export default defineNuxtConfig({
|
||||
modules: [
|
||||
"@nuxtjs/seo",
|
||||
"@nuxtjs/tailwindcss",
|
||||
"@vueuse/nuxt",
|
||||
"@vue-email/nuxt",
|
||||
],
|
||||
app: {
|
||||
head: {
|
||||
link: [
|
||||
{
|
||||
rel: "icon",
|
||||
href: "/favicon.png",
|
||||
type: "image/png",
|
||||
},
|
||||
],
|
||||
htmlAttrs: { lang: "en-us" },
|
||||
},
|
||||
},
|
||||
nitro: {
|
||||
preset: "bun",
|
||||
minify: true,
|
||||
prerender: {
|
||||
failOnError: true,
|
||||
},
|
||||
},
|
||||
devServer: {
|
||||
port: 5173,
|
||||
},
|
||||
schemaOrg: {
|
||||
enabled: false,
|
||||
},
|
||||
ogImage: {
|
||||
enabled: false,
|
||||
},
|
||||
vite: {
|
||||
define: {
|
||||
__VERSION__: JSON.stringify("0.4"),
|
||||
},
|
||||
server: {
|
||||
hmr: {
|
||||
clientPort: 5173,
|
||||
},
|
||||
},
|
||||
},
|
||||
runtimeConfig: {
|
||||
public: {
|
||||
language: "en-US",
|
||||
titleSeparator: "·",
|
||||
siteName: "Lysand",
|
||||
trailingSlash: true,
|
||||
apiHost: "localhost:8080",
|
||||
},
|
||||
},
|
||||
site: {
|
||||
url: "https://social.lysand.org",
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue