10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
import type { BunextConfig } from "@moduletrace/bunext/types";
|
|
|
|
const config: BunextConfig = {
|
|
public_envs: {
|
|
NEXT_PUBLIC_TINYMCE_BASE_URL: "/public/tinymce",
|
|
},
|
|
};
|
|
|
|
export default config;
|