🎉 init project
Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
		
							parent
							
								
									bc936fe610
								
							
						
					
					
						commit
						5bb6feae61
					
				
					 8 changed files with 6815 additions and 0 deletions
				
			
		
							
								
								
									
										24
									
								
								.gitignore
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								.gitignore
									
										
									
									
										vendored
									
									
										Normal file
									
								
							|  | @ -0,0 +1,24 @@ | |||
| # Nuxt dev/build outputs | ||||
| .output | ||||
| .data | ||||
| .nuxt | ||||
| .nitro | ||||
| .cache | ||||
| dist | ||||
| 
 | ||||
| # Node dependencies | ||||
| node_modules | ||||
| 
 | ||||
| # Logs | ||||
| logs | ||||
| *.log | ||||
| 
 | ||||
| # Misc | ||||
| .DS_Store | ||||
| .fleet | ||||
| .idea | ||||
| 
 | ||||
| # Local env files | ||||
| .env | ||||
| .env.* | ||||
| !.env.example | ||||
							
								
								
									
										5
									
								
								app.vue
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								app.vue
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,5 @@ | |||
| <template> | ||||
|   <div> | ||||
|     <NuxtWelcome /> | ||||
|   </div> | ||||
| </template> | ||||
							
								
								
									
										4
									
								
								nuxt.config.ts
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								nuxt.config.ts
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,4 @@ | |||
| // https://nuxt.com/docs/api/configuration/nuxt-config
 | ||||
| export default defineNuxtConfig({ | ||||
|   devtools: { enabled: true } | ||||
| }) | ||||
							
								
								
									
										17
									
								
								package.json
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								package.json
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,17 @@ | |||
| { | ||||
|   "name": "nuxt-app", | ||||
|   "private": true, | ||||
|   "type": "module", | ||||
|   "scripts": { | ||||
|     "build": "nuxt build", | ||||
|     "dev": "nuxt dev", | ||||
|     "generate": "nuxt generate", | ||||
|     "preview": "nuxt preview", | ||||
|     "postinstall": "nuxt prepare" | ||||
|   }, | ||||
|   "dependencies": { | ||||
|     "nuxt": "^3.11.2", | ||||
|     "vue": "^3.4.21", | ||||
|     "vue-router": "^4.3.0" | ||||
|   } | ||||
| } | ||||
							
								
								
									
										6758
									
								
								pnpm-lock.yaml
									
										
									
										generated
									
									
									
										Normal file
									
								
							
							
						
						
									
										6758
									
								
								pnpm-lock.yaml
									
										
									
										generated
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load diff
											
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								public/favicon.ico
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/favicon.ico
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 4.2 KiB | 
							
								
								
									
										3
									
								
								server/tsconfig.json
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								server/tsconfig.json
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,3 @@ | |||
| { | ||||
|   "extends": "../.nuxt/tsconfig.server.json" | ||||
| } | ||||
							
								
								
									
										4
									
								
								tsconfig.json
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								tsconfig.json
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,4 @@ | |||
| { | ||||
|   // https://nuxt.com/docs/guide/concepts/typescript | ||||
|   "extends": "./.nuxt/tsconfig.json" | ||||
| } | ||||
		Reference in a new issue
	
	 Sindre Kjelsrud
						Sindre Kjelsrud