Hey, I have a Neos Site. Now I created a Package to extend the existing Site with some additional functions. For this new functions I need to add a css file to the site. For example:
Additional.Package -> add css file to the Site which is generated by the Main.Package.
At the Moment I have the following code:
Main.Package:
prototype(TYPO3.TypoScript:Template) < prototype(Neos.Fusion:Template)
page = Page {
head {
meta = TYPO3.TypoScript:Template {
templatePath = 'resource://Main.Package/Private/Templates/Page/Default.html'
sectionName = 'meta'
}
stylesheets { }
}
body {...
That doesn’t work . Could it be an Problem that the Main package is a “site package” (created with kickstart:site) and the additional Package (created with kickstart:package) is an application?
In the additional package I also defined some content elements and they are working fine. Just the css file is not included.
Do you have a full example for me? Just want to include a css file a cross two packages.