Compare commits

..

4 Commits

Author SHA1 Message Date
Andreas Knuth 00597a796a app.use('/pictures', express.static('pictures')); 2026-02-05 17:54:49 -06:00
Andreas Knuth 8b3c79b5ff budgets 2026-02-05 17:27:57 -06:00
Andreas Knuth a7d3d2d958 revert 2026-02-05 17:24:12 -06:00
Andreas Knuth 49528a5c37 revert 2026-02-05 17:18:28 -06:00
3 changed files with 16 additions and 5 deletions

View File

@ -14,7 +14,7 @@ async function bootstrap() {
app.useLogger(logger);
//app.use('/bizmatch/payment/webhook', bodyParser.raw({ type: 'application/json' }));
// Serve static files from pictures directory
// app.use('/pictures', express.static('pictures'));
app.use('/pictures', express.static('pictures'));
app.setGlobalPrefix('bizmatch');

View File

@ -21,6 +21,11 @@
"outputPath": "dist/bizmatch",
"index": "src/index.html",
"browser": "src/main.ts",
"server": "src/main.server.ts",
"prerender": false,
"ssr": {
"entry": "server.ts"
},
"allowedCommonJsDependencies": [
"quill-delta",
"leaflet",
@ -48,7 +53,10 @@
],
"styles": [
"src/styles.scss",
"src/styles/lazy-load.css"
"src/styles/lazy-load.css",
"node_modules/quill/dist/quill.snow.css",
"node_modules/leaflet/dist/leaflet.css",
"node_modules/ngx-sharebuttons/themes/default.scss"
]
},
"configurations": {
@ -61,7 +69,7 @@
},
{
"type": "anyComponentStyle",
"maximumWarning": "10kb",
"maximumWarning": "30kb",
"maximumError": "30kb"
}
],
@ -70,7 +78,8 @@
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
"sourceMap": true,
"ssr": false
},
"dev": {
"fileReplacements": [

View File

@ -8,7 +8,9 @@
]
},
"files": [
"src/main.ts"
"src/main.ts",
"src/main.server.ts",
"server.ts"
],
"include": [
"src/**/*.d.ts"