Prepare for deploy
This commit is contained in:
parent
0470fe3d4c
commit
f19e794c38
3 changed files with 5 additions and 1 deletions
1
holycow_frontend/.gitignore
vendored
1
holycow_frontend/.gitignore
vendored
|
@ -2,6 +2,7 @@
|
|||
|
||||
# dependencies
|
||||
.npmrc
|
||||
out
|
||||
/node_modules
|
||||
/.pnp
|
||||
.pnp.*
|
||||
|
|
|
@ -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" />
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
/** @type {import("next").NextConfig} */
|
||||
const nextConfig = {};
|
||||
const nextConfig = {
|
||||
output: "export"
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
|
|
Loading…
Reference in a new issue