mirror of
https://github.com/strapi/strapi.git
synced 2025-07-15 21:11:28 +00:00
14 lines
237 B
TypeScript
14 lines
237 B
TypeScript
![]() |
import { defineConfig } from '@strapi/pack-up';
|
||
|
|
||
|
export default defineConfig({
|
||
|
bundles: [
|
||
|
{
|
||
|
source: './src/cli/index.ts',
|
||
|
require: './dist/cli.js',
|
||
|
},
|
||
|
],
|
||
|
runtime: 'node',
|
||
|
minify: false,
|
||
|
sourcemap: true,
|
||
|
});
|