Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
053aa58
Angular 19
mutatrum Apr 8, 2026
cb59d06
Clean up
mutatrum Apr 8, 2026
0e62192
Merge branch 'upstream/master' into angular-19 and fix conflicts
mutatrum May 4, 2026
bd2496c
Fix build
mutatrum May 4, 2026
a737710
Remove old vela theme and add aliases for variables
mutatrum May 4, 2026
7f9e2e8
Fix build deprecation warnings
mutatrum May 4, 2026
4aa40f2
Fix text-monospace
mutatrum May 4, 2026
111bff4
Use Aura-native text and background colors
mutatrum May 5, 2026
254bc23
Fix topbar padding
mutatrum May 5, 2026
a6fa6bc
Apply style overrides
mutatrum May 5, 2026
31c4962
Fix inputicon
mutatrum May 5, 2026
b69850b
Use TextareaModule
mutatrum May 5, 2026
597346c
Fix frontend test
mutatrum May 5, 2026
26a42c0
Clean op styles.scss
mutatrum May 5, 2026
2e758a2
Improve styles
mutatrum May 5, 2026
edb74e0
Fix styles and dropdowns
mutatrum May 5, 2026
e9a8e5b
Fix build
mutatrum May 5, 2026
a903919
Final touches
mutatrum May 6, 2026
c7d431f
Remove undefined border-surface class
mutatrum May 6, 2026
14c0dcb
Last bits and bobs
mutatrum May 6, 2026
095c9fc
Remove deprecated theme package
mutatrum May 6, 2026
bea425d
Update app.layout.service.ts
mutatrum May 6, 2026
33f7d7f
Merge branch 'master' of https://github.com/bitaxeorg/ESP-Miner into …
mutatrum May 19, 2026
6c0c89b
Fix warning banners and oc setttings input fields
mutatrum May 20, 2026
4f6f7d1
Merge branch 'master' of https://github.com/bitaxeorg/ESP-Miner into …
mutatrum Jun 9, 2026
e6f12f2
Missing styles
mutatrum Jun 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 20 additions & 7 deletions main/http_server/axe-os/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,17 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"allowedCommonJsDependencies": [
"moment",
"gridstack"
],
"outputPath": "dist/axe-os",
"outputPath": {
"base": "dist/axe-os",
"browser": ""
},
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": [
"zone.js"
],
Expand All @@ -39,7 +41,14 @@
"node_modules/ngx-toastr/toastr.css",
"node_modules/gridstack/dist/gridstack.min.css"
],
"scripts": []
"scripts": [],
"browser": "src/main.ts",
"stylePreprocessorOptions": {
"includePaths": ["src"],
"sass": {
"silenceDeprecations": ["import", "global-builtin"]
}
}
},
"configurations": {
"production": {
Expand All @@ -64,9 +73,7 @@
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
Expand Down Expand Up @@ -109,7 +116,13 @@
"styles": [
"src/styles.scss"
],
"scripts": []
"scripts": [],
"stylePreprocessorOptions": {
"includePaths": [
"src",
"src/app/layout/styles/layout"
]
}
}
}
}
Expand Down
Loading
Loading