13 lines
281 B
TypeScript
13 lines
281 B
TypeScript
import type { NextConfig } from "next";
|
|
const path = require('path')
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
allowedDevOrigins: ['imnyang.dev'],
|
|
turbopack: {
|
|
root: path.join(__dirname, '.'),
|
|
},
|
|
output: 'standalone',
|
|
};
|
|
|
|
export default nextConfig;
|