This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { fileURLToPath } from 'node:url'; | |
import { describe, test } from 'vitest'; | |
import { expect } from '@playwright/test'; | |
import { setup, createPage } from '@nuxt/test-utils'; | |
describe('Landing page', async () => { | |
await setup({ | |
rootDir: fileURLToPath(new URL('..', import.meta.url)), | |
server: true, | |
browser: true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* fullPage 2.8.1 | |
* https://github.com/alvarotrigo/fullPage.js | |
* @license MIT licensed | |
* | |
* Copyright (C) 2015 alvarotrigo.com - A project by Alvaro Trigo | |
*/ | |
(function(global, factory) { | |
'use strict'; | |
if (typeof define === 'function' && define.amd) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class typo3 { | |
define load_typo3 { | |
vcsrepo { "${title}/typo3_${typo3_branch}": | |
ensure => latest, | |
revision => $typo3_branch, | |
provider => git, | |
source => "https://github.com/TYPO3/TYPO3.CMS.git", | |
depth => 1, | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (!defined ('TYPO3_MODE')) { | |
die ('Access denied.'); | |
} | |
\FluidTYPO3\Flux\Core::registerConfigurationProvider('FluidTYPO3\Fluidcontent\Provider\ContentProvider'); | |
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array( | |
'Fluid Content', | |
'fluidcontent_content', |