mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
13 lines
317 B
PHP
13 lines
317 B
PHP
<?php
|
|
|
|
if(file_exists("../../../vendor/vuepic/vue-datepicker-js/vue-datepicker.iife.js"))
|
|
{
|
|
header('Content-Type: application/javascript');
|
|
echo file_get_contents("../../../vendor/vuepic/vue-datepicker-js/vue-datepicker.iife.js");
|
|
echo "export default VueDatePicker";
|
|
}
|
|
else
|
|
{
|
|
header('HTTP/1.0 404 Not Found');
|
|
}
|