-
Notifications
You must be signed in to change notification settings - Fork 163
/
next.config.js
48 lines (48 loc) · 1.15 KB
/
next.config.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
module.exports = {
async redirects() {
return [
{
source: '/les-api',
destination: '/rechercher-api',
permanent: true,
},
{
source: '/signup/api',
destination: '/datapass/api',
permanent: true,
},
{
source: '/les-api/nomenclatures_v1',
destination: '/les-api/api-metadonnees-insee',
permanent: true,
},
{
source: '/producteurs/acoss',
destination: '/producteurs/urssaf',
permanent: true,
},
{
source: '/producteurs/eau-france',
destination: '/producteurs/eaufrance',
permanent: true,
},
{
source: '/les-api/api_indemnites_journalieres_cnam',
destination: '/les-api/api-indemnites-journalieres-cnam',
permanent: true,
},
{
source: '/les-api/api_cartobio_territoires',
destination: 'https://www.data.gouv.fr/fr/datasets/616d6531c2951bbe8bd97771/',
permanent: true,
}
];
},
webpack(config, options) {
config.module.rules.push({
test: /\.md$/,
use: 'raw-loader',
});
return config;
},
};