holygrail5 1.0.7 → 1.0.8
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 +1 -1
- package/src/dev.js +1 -1
package/package.json
CHANGED
package/src/dev.js
CHANGED
|
@@ -13,7 +13,7 @@ const watchProcess = spawn('node', [path.join(__dirname, 'watch.js')], {
|
|
|
13
13
|
|
|
14
14
|
// Esperar un momento para que watch genere los archivos inicialmente
|
|
15
15
|
setTimeout(() => {
|
|
16
|
-
const port = process.env.PORT || '
|
|
16
|
+
const port = process.env.PORT || '8080';
|
|
17
17
|
console.log(`\n🌐 Iniciando servidor HTTP en http://localhost:${port}\n`);
|
|
18
18
|
console.log('💡 Los archivos se regenerarán automáticamente cuando cambies config.json\n');
|
|
19
19
|
console.log('💡 Recarga el navegador (Cmd+Shift+R o Ctrl+Shift+R) para ver los cambios\n');
|