Serve data files from other directory:
$ env GRAPHDECK_ASSETS=/path/to/folder-containing-a-data-folder npm run dev
$ npm run build
server {
location /graphdeck {
root /srv/static/;
try_files $uri $uri/ $uri.html /graphdeck/index.html;
}
}