mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
14 lines
270 B
PHP
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');
|
|
}
|