Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const Footer = () => (
/>
</Box>
<Text fontSize={'sm'} alignSelf="center">
© 2022 Open Austin. All rights reserved.
© 2025 Open Austin. All rights reserved.
</Text>
<Stack direction={'row'} spacing={6} justifyContent="center">
{SOCIAL_ITEMS.map((link) => (
Expand Down
13 changes: 12 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
/** @type {import('next').NextConfig} */

const isGithubPages = process.env.DEPLOY_TARGET === 'GH_PAGES';

const nextConfig = {
distDir: "build",
};

module.exports = {
nextConfig,
reactStrictMode: true,
// exportPathMap: () => {}
exportPathMap: () => {},
swcMinify: true,
output: 'export',
assetPrefix: isGithubPages ? '/website-v2-vercel/' : '',
basePath: isGithubPages ? '/website-v2-vercel' : '',
}
14 changes: 9 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
{
"name": "website-2022",
"version": "0.1.0",
"name": "open-austin-website-2025",
"version": "1.2.0",
"homepage": "https://open-austin.github.io/website-v2-vercel/",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next build && next export"
"export": "DEPLOY_TARGET=GH_PAGES next export",
"predeploy": "npm run build",
"deploy": "npm run build&&gh-pages -d build"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.6",
Expand All @@ -18,16 +21,17 @@
"@vercel/analytics": "^0.1.6",
"framer-motion": "^6",
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.7.1",
"react": "18.2.0"
"react-icons": "4.7.1"
},
"devDependencies": {
"@types/node": "18.7.2",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"gh-pages": "^6.3.0",
"typescript": "4.9.4"
}
}