[READ-ONLY] Mirror of https://github.com/danielroe/page-speed.dev. See and share Core Web Vitals and PageSpeed Insights results simply and easily. page-speed.dev
core-web-vitals pagespeed performance
0

Configure Feed

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

chore: init

author
Daniel Roe
date (Jan 18, 2024, 8:56 PM UTC) commit e3bb78eb
+57
+24
.gitignore
··· 1 + # Nuxt dev/build outputs 2 + .output 3 + .data 4 + .nuxt 5 + .nitro 6 + .cache 7 + dist 8 + 9 + # Node dependencies 10 + node_modules 11 + 12 + # Logs 13 + logs 14 + *.log 15 + 16 + # Misc 17 + .DS_Store 18 + .fleet 19 + .idea 20 + 21 + # Local env files 22 + .env 23 + .env.* 24 + !.env.example
+5
app.vue
··· 1 + <template> 2 + <div> 3 + <NuxtWelcome /> 4 + </div> 5 + </template>
bun.lockb

This is a binary file and will not be displayed.

+4
nuxt.config.ts
··· 1 + // https://nuxt.com/docs/api/configuration/nuxt-config 2 + export default defineNuxtConfig({ 3 + devtools: { enabled: true } 4 + })
+17
package.json
··· 1 + { 2 + "name": "page-speed", 3 + "private": true, 4 + "type": "module", 5 + "scripts": { 6 + "build": "nuxt build", 7 + "dev": "nuxt dev", 8 + "generate": "nuxt generate", 9 + "preview": "nuxt preview", 10 + "postinstall": "nuxt prepare" 11 + }, 12 + "devDependencies": { 13 + "nuxt": "^3.9.3", 14 + "vue": "^3.4.14", 15 + "vue-router": "^4.2.5" 16 + } 17 + }
+3
server/tsconfig.json
··· 1 + { 2 + "extends": "../.nuxt/tsconfig.server.json" 3 + }
+4
tsconfig.json
··· 1 + { 2 + // https://nuxt.com/docs/guide/concepts/typescript 3 + "extends": "./.nuxt/tsconfig.json" 4 + }