7 lines
170 B
JavaScript
7 lines
170 B
JavaScript
// export basePath to next.config.js
|
|
// same as the one exported from var.ts
|
|
module.exports = {
|
|
basePath: process.env.NEXT_PUBLIC_BASE_PATH || '',
|
|
assetPrefix: '',
|
|
}
|