Skip to content

Commit

Permalink
initial angular setup?
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacThoman committed Dec 6, 2024
1 parent 9b10a74 commit cd5ec42
Show file tree
Hide file tree
Showing 8 changed files with 36,497 additions and 5,604 deletions.
51 changes: 51 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"my-app": {
"projectType": "application",
"root": ".",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@analogjs/platform:vite",
"options": {
"configFile": "vite.config.ts",
"main": "src/main.ts",
"outputPath": "dist/client",
"tsConfig": "tsconfig.app.json"
},
"defaultConfiguration": "production",
"configurations": {
"development": {
"mode": "development"
},
"production": {
"sourcemap": false,
"mode": "production"
}
}
},
"serve": {
"builder": "@analogjs/platform:vite-dev-server",
"defaultConfiguration": "development",
"options": {
"buildTarget": "my-app:build",
"port": 5173
},
"configurations": {
"development": {
"buildTarget": "my-app:build:development",
"hmr": true
},
"production": {
"buildTarget": "my-app:build:production"
}
}
}
}
}
}
}
9,229 changes: 8,498 additions & 731 deletions deno.lock

Large diffs are not rendered by default.

18 changes: 7 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,25 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta charset="utf-8" />
<title>candiru</title>
<base href="/" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" href="/public/style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">

<meta name="mobile-web-app-capable" content="yes">

<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Candiru">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="theme-color" content="#000000">

</head>
<link rel="stylesheet" href="/style.css">

<script type="module" src="/src/client/main.ts"></script>


<body>

<app-root></app-root>
<script type="module" src="/src/client/main.ts"></script>
</body>
</html>
</html>
Loading

0 comments on commit cd5ec42

Please sign in to comment.