-
-
Notifications
You must be signed in to change notification settings - Fork 585
/
.silex.js
71 lines (67 loc) · 2.39 KB
/
.silex.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
* Silex website builder, free/libre no-code tool for makers.
* Copyright (c) 2023 lexoyo and Silex Labs foundation
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/**
* @fileoverview This file is loaded by Silex at startup, after the user config if you specify one
*/
const SslPlugin = require('./dist/plugins/server/plugins/server/SslPlugin').default
const StaticPlugin = require('./dist/plugins/server/plugins/server/StaticPlugin').default
const { join } = require('path')
const nodeModules = require('node_modules-path')
module.exports = async function(config, options) {
try {
await config.addPlugin([
SslPlugin,
StaticPlugin,
], {
[StaticPlugin]: {
routes: [
{
route: '/',
path: join(__dirname, 'public'),
}, {
route: '/css/',
path: nodeModules('@fortawesome/fontawesome-free') + '/@fortawesome/fontawesome-free/css/',
}, {
route: '/webfonts/',
path: nodeModules('@fortawesome/fontawesome-free') + '/@fortawesome/fontawesome-free/webfonts/',
}, {
route: '/css/files/',
path: nodeModules('@fontsource/ubuntu') + '/@fontsource/ubuntu/files/',
}, {
route: '/',
path: join(__dirname, 'dist', 'client'),
}, {
route: '/',
path: join(__dirname, 'dist', 'plugins', 'client'),
},
]
// add project route for source maps
.concat(config.debug ? [{
route: '/',
path: './',
}, {
route: '/js/',
path: nodeModules('@silexlabs/silex-cms') + '/@silexlabs/silex-cms/',
}] : []),
},
})
} catch(e) {
console.error(e)
}
// Return an object to be merged with Silex config
return {}
}