@papercraneai/cli 1.6.0-beta.1 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/dev-server.js +2 -2
- package/package.json +1 -1
package/lib/dev-server.js
CHANGED
|
@@ -330,10 +330,10 @@ export async function generateScaffolding(workspaceDir) {
|
|
|
330
330
|
|
|
331
331
|
// next.config.mjs
|
|
332
332
|
const nextConfigPath = path.join(workspaceDir, 'next.config.mjs');
|
|
333
|
-
const transpileLine = isLocalDev ? ` transpilePackages: ['@papercraneai/cli'],\n` : '';
|
|
334
333
|
const nextConfig = `/** @type {import('next').NextConfig} */
|
|
335
334
|
const nextConfig = {
|
|
336
|
-
|
|
335
|
+
transpilePackages: ['@papercraneai/cli'],
|
|
336
|
+
turbopack: {
|
|
337
337
|
root: ${JSON.stringify(workspaceDir)},
|
|
338
338
|
},
|
|
339
339
|
};
|