| 12345678910111213141516171819 |
- // https://v3.nuxtjs.org/api/configuration/nuxt.config
- export default defineNuxtConfig({
- css: [
- '@/assets/styles/index.styl',
- 'normalize.css'
- ],
- appConfig: {
- title: '练手项目',
- description: '练手项目,纯个人网站,无违规内容,不涉及营销,不含有企业、单位等非个人网站的信息',
- beian: '鄂ICP备2024080511号-2'
- },
- app: {
- head: {
- link: [
- { rel: 'icon', href: '/favicon.ico' }
- ]
- }
- }
- })
|