1
Fork 0

Prepare for deploy

This commit is contained in:
Steffo 2024-11-28 00:12:39 +01:00
parent 0470fe3d4c
commit f19e794c38
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0
3 changed files with 5 additions and 1 deletions

View file

@ -2,6 +2,7 @@
# dependencies
.npmrc
out
/node_modules
/.pnp
.pnp.*

View file

@ -5,6 +5,7 @@
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/node_modules" />
<excludeFolder url="file://$MODULE_DIR$/out" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />

View file

@ -1,4 +1,6 @@
/** @type {import("next").NextConfig} */
const nextConfig = {};
const nextConfig = {
output: "export"
};
export default nextConfig;