Skip to content

Commit e5b51e1

Browse files
committed
sync domain name
1 parent 135a549 commit e5b51e1

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

next.config.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@ const nextConfig: NextConfig = {
44
experimental: {
55
ppr: false,
66
clientSegmentCache: false,
7+
},
8+
distDir: 'out',
9+
output: "export",
10+
trailingSlash: true,
11+
images: {
12+
unoptimized: true
713
}
814
};
915

1016
export default nextConfig;
11-
12-
module.exports = {
13-
distDir: 'out',
14-
output: "export",
15-
}

public/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
www.verbalized-sampling.com

public/index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Redirecting to verbalized-sampling.com</title>
6+
<meta http-equiv="refresh" content="0; url=http://www.verbalized-sampling.com/">
7+
<script>
8+
window.location.href = "http://www.verbalized-sampling.com/";
9+
</script>
10+
</head>
11+
<body>
12+
<p>If you are not redirected automatically, <a href="http://www.verbalized-sampling.com/">click here</a>.</p>
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)