Files
2024-10-17 15:34:00 +02:00

14 lines
270 B
PHP

<?php
$path = "../../../vendor/vuejs/vuedatepicker_js/vue-datepicker.iife.js";
if(file_exists($path))
{
header('Content-Type: application/javascript');
echo file_get_contents($path);
echo "export default VueDatePicker";
}
else
{
header('HTTP/1.0 404 Not Found');
}