mirror of
https://github.com/strapi/strapi.git
synced 2025-07-18 22:45:47 +00:00
15 lines
349 B
TypeScript
15 lines
349 B
TypeScript
![]() |
// eslint-disable-next-line import/no-extraneous-dependencies
|
||
|
import { defineConfig } from '@strapi/pack-up';
|
||
|
|
||
|
export default defineConfig({
|
||
|
bundles: [
|
||
|
{
|
||
|
source: './src/create-strapi-app.ts',
|
||
|
import: './dist/create-strapi-app.mjs',
|
||
|
require: './dist/create-strapi-app.js',
|
||
|
},
|
||
|
],
|
||
|
dist: './dist',
|
||
|
runtime: 'node',
|
||
|
});
|