mirror of
https://github.com/strapi/strapi.git
synced 2025-06-27 00:41:25 +00:00

* draft implementation details header * implementation details ui with mock data * fix unit tests * fix fernando comments * update pages structure * first raw implementation store with rtk * refactor(releases): redux toolkit query work * rename releases page * merge feature/content-releases * test(releases): setup test harness for working with the admin app (#18817) * test(releases): setup test harness for working with the admin app * chore: remove file that shouldn't be here * rename releases page * merge "content-releases/release-details-redirect-after-creation" * test(releases): setup test harness for working with the admin app * rename releases page * merge "content-releases/release-details-redirect-after-creation" --------- Co-authored-by: Simone Taeggi <startae14@gmail.com> * fix Fernando's review comments --------- Co-authored-by: Josh <37798644+joshuaellis@users.noreply.github.com>
30 lines
793 B
TypeScript
30 lines
793 B
TypeScript
import { defineConfig } from '@strapi/pack-up';
|
|
|
|
export default defineConfig({
|
|
bundles: [
|
|
{
|
|
source: './admin/src/index.ts',
|
|
import: './dist/admin/index.mjs',
|
|
require: './dist/admin/index.js',
|
|
types: './dist/admin/src/index.d.ts',
|
|
tsconfig: './admin/tsconfig.build.json',
|
|
runtime: 'web',
|
|
},
|
|
{
|
|
source: './server/src/index.ts',
|
|
import: './dist/server/index.mjs',
|
|
require: './dist/server/index.js',
|
|
types: './dist/server/src/index.d.ts',
|
|
tsconfig: './server/tsconfig.build.json',
|
|
runtime: 'node',
|
|
},
|
|
],
|
|
dist: './dist',
|
|
/**
|
|
* Because we're exporting a server & client package
|
|
* which have different runtimes we want to ignore
|
|
* what they look like in the package.json
|
|
*/
|
|
exports: {},
|
|
});
|