[READ-ONLY] Mirror of https://github.com/danielroe/roe.dev. This is the code and content for my personal website, built in Nuxt. roe.dev
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: update copyright

+7 -1
+1 -1
src/components/layout/TheSiteFooter.vue
··· 1 1 <template> 2 2 <footer :class="$style.footer"> 3 - <small>&copy; 2019-2020 Daniel Roe. All rights reserved.</small> 3 + <small>&copy; 2019-2022 Daniel Roe. All rights reserved.</small> 4 4 <ul> 5 5 <li v-for="{ link, name, icon } in links" :key="name"> 6 6 <a :href="link">
+6
stylelint.config.js
··· 7 7 // add your custom config here 8 8 // https://stylelint.io/user-guide/configuration 9 9 rules: { 10 + 'function-no-unknown': [ 11 + true, 12 + { 13 + ignoreFunctions: ['theme'], 14 + }, 15 + ], 10 16 'at-rule-no-unknown': [ 11 17 true, 12 18 {