mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
7 lines
164 B
JavaScript
7 lines
164 B
JavaScript
|
const { NOW_URL } = process.env
|
||
|
const { alias } = require('./now.json')
|
||
|
|
||
|
module.exports = {
|
||
|
assetPrefix: NOW_URL ? `https://${alias}` : 'http://localhost:5000'
|
||
|
}
|