Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PROPOSAL: Add startUI.appBasename option in next.config.js #161

Closed
wants to merge 1 commit into from
Closed
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
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,21 @@ Create a `.env` file at the root of the project with the following content:
NEXT_PUBLIC_API_BASE_URL=http://localhost:8080/api
```

## Change the app basename

Udpate the `startUI.appBasename` in the `next.config.js` to change the url where the `app` (folder) is serve.

ℹ️ Only accept first level path like ✅ `admin` (❌ `sub/path` will not work)

```js
// next.config.js
module.exports = {
startUI: {
appBasename: 'app',
},
}
```

## Show hint on development environments

Setup the `NEXT_PUBLIC_DEV_ENV_NAME` env variable with the name of the environment.
Expand Down Expand Up @@ -229,6 +244,8 @@ Then expose the `/out` folder.

💡 You will need to setup your server to rewrite all `/app/*` urls to serve the `app.html` file.

⚠️ If you changed the `startUI.appBasename` You will need to setup your server to rewrite all `/your-basename/*` urls to serve the `your-basename.html` file.

#### Using Apache as your web server

If you are using [apache](https://httpd.apache.org/) to statically deploy your app, you can use the following configuration for `public/.htaccess` :
Expand Down
7 changes: 5 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
module.exports = {
startUI: {
appBasename: 'app',
},
experimental: {
outputStandalone: true,
},
Expand All @@ -20,8 +23,8 @@ module.exports = {
},
// Rewrite everything else to use `pages/app`
{
source: '/app/:any*',
destination: '/app/',
source: `/${this.startUI.appBasename}/:any*`,
destination: `/${this.startUI.appBasename}/`,
},
];
},
Expand Down
3 changes: 2 additions & 1 deletion src/app/App.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { App } from '@/app/App';
import { APP_BASENAME } from '@/constants/routing';
import { act, render, screen } from '@/test/utils';

beforeEach(() => {
window.history.pushState({}, '', '/app');
window.history.pushState({}, '', `/${APP_BASENAME}`);
});

test('Mount App without errors', async () => {
Expand Down
3 changes: 2 additions & 1 deletion src/app/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
AuthenticatedRouteGuard,
PublicOnlyRouteGuard,
} from '@/app/router/guards';
import { APP_BASENAME } from '@/constants/routing';
import { Error404, ErrorBoundary } from '@/errors';

const AdminRoutes = React.lazy(() => import('@/app/admin/AdminRoutes'));
Expand All @@ -22,7 +23,7 @@ const DashboardRoutes = React.lazy(
export const App = () => {
return (
<ErrorBoundary>
<BrowserRouter basename="/app">
<BrowserRouter basename={`/${APP_BASENAME}`}>
<Layout>
<Suspense fallback={<Loader />}>
<Routes>
Expand Down
3 changes: 3 additions & 0 deletions src/constants/routing.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import nextConfig from '../../next.config';

export const APP_BASENAME = nextConfig.startUI.appBasename ?? 'app';
21 changes: 21 additions & 0 deletions src/pages/app.tsx → src/pages/[app].tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import React, { useEffect, useState } from 'react';

import { Flex, Progress } from '@chakra-ui/react';
import { GetStaticPaths, GetStaticProps } from 'next';
import dynamic from 'next/dynamic';

import { Viewport } from '@/components';
import { APP_BASENAME } from '@/constants/routing';

const Loading = () => (
<Viewport>
Expand Down Expand Up @@ -36,3 +38,22 @@ const App = () => {
return isLoading ? <Loading /> : <AppComponent />;
};
export default App;

// Allows easy url change within the next.config.js
export const getStaticPaths: GetStaticPaths = () => {
return {
paths: [
{
params: {
app: APP_BASENAME,
},
},
],
fallback: false,
};
};

// Needed for getStaticPaths
export const getStaticProps: GetStaticProps = () => ({
props: {},
});
3 changes: 2 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ import Head from 'next/head';
import { useRouter } from 'next/router';

import { Loader } from '@/app/layout';
import { APP_BASENAME } from '@/constants/routing';

const Index = () => {
const router = useRouter();
useEffect(() => {
router.push('/app');
router.push(`/${APP_BASENAME}`);
}, [router]);

return (
Expand Down