strapi/packages/core/database/packup.config.ts
Ben Irvin 6d4417f55c
chore: only support better-sqlite3 package for sqlite (#18500)
Co-authored-by: Josh <37798644+joshuaellis@users.noreply.github.com>
resolves #16645
2023-10-30 12:38:20 +01:00

16 lines
396 B
TypeScript

// eslint-disable-next-line import/no-extraneous-dependencies
import { defineConfig } from '@strapi/pack-up';
export default defineConfig({
externals: [
/**
* Knex dependencies, if we don't mark these as external
* they will be included in the bundle which means they
* will fail...
*/
'knex/lib/query/querybuilder',
'knex/lib/raw',
],
runtime: 'node',
});