Skip to content
Snippets Groups Projects
Commit b97f69ab authored by Piotr Gawron's avatar Piotr Gawron
Browse files

Merge branch 'bugfix/deployment-issues' into 'development'

Bugfix/deployment issues

See merge request !178
parents 9def2152 40999d24
No related branches found
No related tags found
2 merge requests!223reset the pin numbers before search results are fetch (so the results will be...,!178Bugfix/deployment issues
Pipeline #88787 passed
......@@ -10,3 +10,5 @@ tsconfig.tsbuildinfo
# random files
.vscode
.DS_Store
.idea
out
......@@ -9,7 +9,7 @@ To get bounds of the current active map, plugins can use the `getBounds` method
Example of returned object:
```javascript
```
{
x1: 12853,
y1: 4201,
......
/** @type {import('next').NextConfig} */
/** @type {import("next").NextConfig} */
const nextConfig = {
reactStrictMode: true,
basePath: process.env.APP_PREFIX ? process.env.APP_PREFIX + '/index.html' : '',
assetPrefix: process.env.APP_PREFIX ? process.env.APP_PREFIX : '',
output: 'export',
images: {
unoptimized: true,
......
......@@ -7,7 +7,7 @@ const Document = (): React.ReactNode => (
<body>
<Main />
<NextScript />
<Script src="/config.js" strategy="beforeInteractive" />
<Script src="./config.js" strategy="beforeInteractive" />
</body>
</Html>
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment