Compare commits
4 Commits
047c723364
...
00597a796a
| Author | SHA1 | Date |
|---|---|---|
|
|
00597a796a | |
|
|
8b3c79b5ff | |
|
|
a7d3d2d958 | |
|
|
49528a5c37 |
|
|
@ -14,7 +14,7 @@ async function bootstrap() {
|
||||||
app.useLogger(logger);
|
app.useLogger(logger);
|
||||||
//app.use('/bizmatch/payment/webhook', bodyParser.raw({ type: 'application/json' }));
|
//app.use('/bizmatch/payment/webhook', bodyParser.raw({ type: 'application/json' }));
|
||||||
// Serve static files from pictures directory
|
// Serve static files from pictures directory
|
||||||
// app.use('/pictures', express.static('pictures'));
|
app.use('/pictures', express.static('pictures'));
|
||||||
|
|
||||||
app.setGlobalPrefix('bizmatch');
|
app.setGlobalPrefix('bizmatch');
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,11 @@
|
||||||
"outputPath": "dist/bizmatch",
|
"outputPath": "dist/bizmatch",
|
||||||
"index": "src/index.html",
|
"index": "src/index.html",
|
||||||
"browser": "src/main.ts",
|
"browser": "src/main.ts",
|
||||||
|
"server": "src/main.server.ts",
|
||||||
|
"prerender": false,
|
||||||
|
"ssr": {
|
||||||
|
"entry": "server.ts"
|
||||||
|
},
|
||||||
"allowedCommonJsDependencies": [
|
"allowedCommonJsDependencies": [
|
||||||
"quill-delta",
|
"quill-delta",
|
||||||
"leaflet",
|
"leaflet",
|
||||||
|
|
@ -48,7 +53,10 @@
|
||||||
],
|
],
|
||||||
"styles": [
|
"styles": [
|
||||||
"src/styles.scss",
|
"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": {
|
"configurations": {
|
||||||
|
|
@ -61,7 +69,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "anyComponentStyle",
|
"type": "anyComponentStyle",
|
||||||
"maximumWarning": "10kb",
|
"maximumWarning": "30kb",
|
||||||
"maximumError": "30kb"
|
"maximumError": "30kb"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
@ -70,7 +78,8 @@
|
||||||
"development": {
|
"development": {
|
||||||
"optimization": false,
|
"optimization": false,
|
||||||
"extractLicenses": false,
|
"extractLicenses": false,
|
||||||
"sourceMap": true
|
"sourceMap": true,
|
||||||
|
"ssr": false
|
||||||
},
|
},
|
||||||
"dev": {
|
"dev": {
|
||||||
"fileReplacements": [
|
"fileReplacements": [
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,9 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"src/main.ts"
|
"src/main.ts",
|
||||||
|
"src/main.server.ts",
|
||||||
|
"server.ts"
|
||||||
],
|
],
|
||||||
"include": [
|
"include": [
|
||||||
"src/**/*.d.ts"
|
"src/**/*.d.ts"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue