Skip to content

Commit

Permalink
Merge pull request #49 from l00pinfinity/v2.0.2
Browse files Browse the repository at this point in the history
V2.0.2
  • Loading branch information
l00pinfinity authored Jul 10, 2024
2 parents e6b58e0 + dc8fb52 commit dc3ef58
Show file tree
Hide file tree
Showing 32 changed files with 5,059 additions and 2,928 deletions.
17 changes: 0 additions & 17 deletions .browserslistrc

This file was deleted.

30 changes: 18 additions & 12 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "www",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"polyfills": [
"src/polyfills.ts"
],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
Expand All @@ -31,8 +32,12 @@
"output": "./svg"
}
],
"styles": ["src/global.scss", "src/theme/variables.scss"],
"scripts": []
"styles": [
"src/global.scss",
"src/theme/variables.scss"
],
"scripts": [],
"browser": "src/main.ts"
},
"configurations": {
"production": {
Expand All @@ -54,12 +59,11 @@
"with": "src/environments/environment.development.ts"
}
],
"outputHashing": "all"
"outputHashing": "all",
"serviceWorker": "ngsw-config.json"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true,
Expand Down Expand Up @@ -91,8 +95,7 @@
"development": {
"buildTarget": "app:build:development"
},
"ci": {
}
"ci": {}
},
"defaultConfiguration": "development"
},
Expand Down Expand Up @@ -122,7 +125,10 @@
"output": "./svg"
}
],
"styles": ["src/global.scss", "src/theme/variables.scss"],
"styles": [
"src/global.scss",
"src/theme/variables.scss"
],
"scripts": []
},
"configurations": {
Expand Down Expand Up @@ -157,4 +163,4 @@
"styleext": "scss"
}
}
}
}
2 changes: 1 addition & 1 deletion capacitor.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.silkwebhq.devvscapecode',
appName: 'Devvscape',
webDir: 'www',
webDir: 'www/browser',
bundledWebRuntime: false,
plugins: {
AdMob: {
Expand Down
29 changes: 29 additions & 0 deletions ngsw-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"$schema": "./node_modules/@angular/service-worker/config/schema.json",
"index": "/index.html",
"assetGroups": [
{
"name": "app",
"installMode": "prefetch",
"resources": {
"files": [
"/favicon.ico",
"/index.html",
"/manifest.webmanifest",
"/*.css",
"/*.js"
]
}
},
{
"name": "assets",
"installMode": "lazy",
"updateMode": "prefetch",
"resources": {
"files": [
"/**/*.(svg|cur|jpg|jpeg|png|apng|webp|avif|gif|otf|ttf|woff|woff2)"
]
}
}
]
}
Loading

0 comments on commit dc3ef58

Please sign in to comment.