7 lines
173 B
JavaScript
7 lines
173 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
basePath: '/react',
|
|
assetPrefix: 'https://interstellardevelopment.org',
|
|
};
|
|
|
|
export default nextConfig;
|