nuxt.config.ts 485 B

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