7a3bbfde10
ref MOM61 - Adds admin-x react app we’ll use as ActivityPub playground to the sidebar nav behind the feature flag. - Wired up routing to Ember - Setup the project as `admin-x-activitypub` --------- Co-authored-by: Ronald Langeveld <hi@ronaldlangeveld.com>
11 lines
294 B
JavaScript
11 lines
294 B
JavaScript
import adminXViteConfig from '@tryghost/admin-x-framework/vite';
|
|
import pkg from './package.json';
|
|
import {resolve} from 'path';
|
|
|
|
export default (function viteConfig() {
|
|
return adminXViteConfig({
|
|
packageName: pkg.name,
|
|
entry: resolve(__dirname, 'src/index.tsx')
|
|
});
|
|
});
|