Skip to content

Commit

Permalink
Merge pull request #81 from VortexExpansion/kuroco-front
Browse files Browse the repository at this point in the history
add kuroco_front
  • Loading branch information
takel-shiba authored May 17, 2024
2 parents 5b06c7b + 6476e8b commit 47bd465
Show file tree
Hide file tree
Showing 7 changed files with 101 additions and 4 deletions.
36 changes: 32 additions & 4 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,34 @@ export default defineNuxtConfig({
}
},

app: {
head: {
title: 'Nuxt Auth',
htmlAttrs: {
lang: 'ja'
},
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'description', content: '' },
{
name: 'og_title',
property: 'og:title',
content: 'Kuroco sample'
},
{
name: 'og_description',
property: 'og:description',
content: 'Kuroco sample page'
},
{ name: 'robots', content: 'index' }
],
link: [
{ rel: 'icon', type: 'image/svg+xml', href: '/icon_kuroco.svg' },
]
}
},

devtools: { enabled: true },
css: ['@/assets/style.scss'],

Expand All @@ -20,9 +48,9 @@ export default defineNuxtConfig({
});
},
'@formkit/nuxt',
'nuxt-snackbar',,
'nuxt-snackbar',
'@nuxtjs/i18n',
'@nuxt/eslint',
'@nuxt/eslint'
],
i18n: {
locales: [
Expand All @@ -33,8 +61,8 @@ export default defineNuxtConfig({
strategy: 'prefix_except_default',
langDir: 'locales',
compilation: {
strictMessage: false, // To allow html tags in locales
},
strictMessage: false // To allow html tags in locales
}
},
formkit: {
// Experimental support for auto loading (see note):
Expand Down
4 changes: 4 additions & 0 deletions pages/reminder.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<template>
<div class="p-login_content elevation-7">
<Head>
<Meta name="og_title" content="Reminder" />
<Meta name="og_description" content="Reminder page" />
</Head>
<v-row>
<v-col class="pa-0 col-sm-6 col-12">
<div class="p-login_intro">
Expand Down
Binary file modified public/favicon.ico
Binary file not shown.
Binary file added public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
53 changes: 53 additions & 0 deletions public/icon_kuroco.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions public/kuroco_front.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"basic": [],
"ip_restrictions": [],
"redirects": [],
"rewrites": [
{
"source": ".*",
"destination": "/index.html"
}
]
}
1 change: 1 addition & 0 deletions public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
User-agent: *

0 comments on commit 47bd465

Please sign in to comment.