Set up a fresh Statamic site

This commit is contained in:
2025-11-23 13:41:35 +01:00
commit 618cc0f799
104 changed files with 15130 additions and 0 deletions

14
resources/js/cp.js Normal file
View File

@ -0,0 +1,14 @@
/**
* When extending the control panel, be sure to uncomment the necessary code for your build process:
* https://statamic.dev/extending/control-panel
*/
/** Example Fieldtype
import ExampleFieldtype from './components/fieldtypes/ExampleFieldtype.vue';
Statamic.booting(() => {
Statamic.$components.register('example-fieldtype', ExampleFieldtype);
});
*/