strapi-plugin-magic-link-v5 4.1.0 → 4.3.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/package.json
CHANGED
|
@@ -8,9 +8,7 @@ const os = require('os');
|
|
|
8
8
|
|
|
9
9
|
// Fixed License Server URL - DO NOT MODIFY IN PRODUCTION
|
|
10
10
|
// For development/testing, you can override with LICENSE_SERVER_URL environment variable
|
|
11
|
-
const LICENSE_SERVER_URL = process.env.
|
|
12
|
-
? (process.env.LICENSE_SERVER_URL || 'http://localhost:1337')
|
|
13
|
-
: 'https://your-license-server.com'; // TODO: Replace with your actual license server URL before publishing
|
|
11
|
+
const LICENSE_SERVER_URL = process.env.LICENSE_SERVER_URL || 'https://magicapi.fitlex.me';
|
|
14
12
|
|
|
15
13
|
module.exports = ({ strapi }) => ({
|
|
16
14
|
/**
|